common: move sources to external.nix

keep-around/da6dffbcff95946fc0681c2f9f8db2c04a084b00
hexchen 2021-01-02 09:01:17 +00:00
parent d761086909
commit da6dffbcff
2 changed files with 8 additions and 9 deletions

View File

@ -1,15 +1,9 @@
{ config, lib, pkgs, ... }:
let
home-manager = fetchGit {
url = "https://github.com/nix-community/home-manager";
rev = "a98ec6ec158686387d66654ea96153ec06be33d7";
};
in {
{
imports = [
../../modules
"${home-manager}/nixos"
./pbb.nix
./external.nix
./users.nix
];

View File

@ -1,7 +1,7 @@
let
pbb-nixfiles = fetchGit {
url = "https://git.petabyte.dev/petabyteboy/nixfiles";
rev = "ac4f83ecdc2ff1794223c0485ab749cbe399e802";
rev = "b15d29e0440716fc37414547d55839717c9ed2f9";
};
qyliss-nixlib = fetchTarball {
@ -9,9 +9,14 @@ let
sha256 = "0nan14ixhdzxxddnckqqhaxhr96yw08rgcmxssddhji6aq5a445j";
};
home-manager = fetchGit {
url = "https://github.com/nix-community/home-manager";
rev = "a98ec6ec158686387d66654ea96153ec06be33d7";
};
in {
imports = [
(pbb-nixfiles + "/modules")
(home-manager + "/nixos")
];
nixpkgs.overlays = [