common: move sources to external.nix
This commit is contained in:
parent
d761086909
commit
da6dffbcff
2 changed files with 8 additions and 9 deletions
|
@ -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
|
||||
];
|
||||
|
||||
|
|
|
@ -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 = [
|
Loading…
Reference in a new issue