extract lib.nixosSystem into createSystem
This commit is contained in:
parent
1493257c51
commit
e107d8aa70
1 changed files with 10 additions and 26 deletions
|
@ -4,28 +4,20 @@
|
||||||
}: let
|
}: let
|
||||||
inherit (inputs) self;
|
inherit (inputs) self;
|
||||||
inherit (self) lib;
|
inherit (self) lib;
|
||||||
in {
|
|
||||||
niks = lib.nixosSystem {
|
|
||||||
system = null;
|
|
||||||
specialArgs = {
|
|
||||||
inherit lib inputs self;
|
|
||||||
};
|
|
||||||
modules = [
|
|
||||||
./niks
|
|
||||||
../modules
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
del = lib.nixosSystem {
|
createSystem = systemDir: lib.nixosSystem {
|
||||||
system = null;
|
system = null;
|
||||||
specialArgs = {
|
specialArgs = {inherit lib inputs self;};
|
||||||
inherit lib inputs self;
|
|
||||||
};
|
|
||||||
modules = [
|
modules = [
|
||||||
./del
|
systemDir
|
||||||
../modules
|
../modules
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
in {
|
||||||
|
|
||||||
|
niks = createSystem ./niks;
|
||||||
|
|
||||||
|
del = createSystem ./del;
|
||||||
|
|
||||||
#hape = lib.nixosSystem {
|
#hape = lib.nixosSystem {
|
||||||
# system = "x86_64-linux";
|
# system = "x86_64-linux";
|
||||||
|
@ -38,14 +30,6 @@ in {
|
||||||
# inputs.home-manager.nixosModules.home-manager
|
# inputs.home-manager.nixosModules.home-manager
|
||||||
# ];
|
# ];
|
||||||
#};
|
#};
|
||||||
chmura = lib.nixosSystem {
|
|
||||||
system = null;
|
chmura = createSystem ./chmura;
|
||||||
specialArgs = {
|
|
||||||
inherit lib inputs self;
|
|
||||||
};
|
|
||||||
modules = [
|
|
||||||
./chmura
|
|
||||||
../modules
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue