35 lines
677 B
Nix
35 lines
677 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 = lib.nixosSystem {
|
|
# system = "x86_64-linux";
|
|
# specialArgs = {
|
|
# inherit lib inputs self;
|
|
# };
|
|
# modules = [
|
|
# ./hape
|
|
# ../modules
|
|
# inputs.home-manager.nixosModules.home-manager
|
|
# ];
|
|
#};
|
|
|
|
chmura = createSystem ./chmura;
|
|
}
|