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
|
||||
inherit (inputs) self;
|
||||
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;
|
||||
specialArgs = {
|
||||
inherit lib inputs self;
|
||||
};
|
||||
specialArgs = {inherit lib inputs self;};
|
||||
modules = [
|
||||
./del
|
||||
systemDir
|
||||
../modules
|
||||
];
|
||||
};
|
||||
in {
|
||||
|
||||
niks = createSystem ./niks;
|
||||
|
||||
del = createSystem ./del;
|
||||
|
||||
#hape = lib.nixosSystem {
|
||||
# system = "x86_64-linux";
|
||||
|
@ -38,14 +30,6 @@ in {
|
|||
# inputs.home-manager.nixosModules.home-manager
|
||||
# ];
|
||||
#};
|
||||
chmura = lib.nixosSystem {
|
||||
system = null;
|
||||
specialArgs = {
|
||||
inherit lib inputs self;
|
||||
};
|
||||
modules = [
|
||||
./chmura
|
||||
../modules
|
||||
];
|
||||
};
|
||||
|
||||
chmura = createSystem ./chmura;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue