24 lines
425 B
Nix
24 lines
425 B
Nix
{
|
|
inputs,
|
|
...
|
|
}: let
|
|
inherit (inputs) self;
|
|
inherit (self) lib;
|
|
|
|
createSystem = systemDir: lib.nixosSystem {
|
|
system = null;
|
|
specialArgs = {inherit lib inputs self;};
|
|
modules = [
|
|
systemDir
|
|
../modules
|
|
];
|
|
};
|
|
in {
|
|
niks = createSystem ./niks;
|
|
|
|
del = createSystem ./del;
|
|
|
|
hape = createSystem ./hape;
|
|
|
|
chmura = createSystem ./chmura;
|
|
}
|