system
This commit is contained in:
parent
a2c8e91b3c
commit
5f3ac217d6
3 changed files with 5 additions and 1 deletions
|
|
@ -57,7 +57,7 @@
|
||||||
nixosConfigurations = lib.pipe ./hosts [
|
nixosConfigurations = lib.pipe ./hosts [
|
||||||
builtins.readDir
|
builtins.readDir
|
||||||
(lib.filterAttrs (_: type: type == "directory"))
|
(lib.filterAttrs (_: type: type == "directory"))
|
||||||
(lib.filterAttrs (name: _: builtins.pathExists ./hosts/${name}/default.nix && builtins.pathExists ./hosts/${name}/hardware.nix && builtins.pathExists ./hosts/${name}/config.nix))
|
# (lib.filterAttrs (name: _: builtins.pathExists ./hosts/${name}/default.nix && builtins.pathExists ./hosts/${name}/hardware.nix && builtins.pathExists ./hosts/${name}/config.nix))
|
||||||
(lib.mapAttrs (name: _: makeHost name))
|
(lib.mapAttrs (name: _: makeHost name))
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
{...}: {
|
||||||
|
}
|
||||||
2
system/default.nix
Normal file
2
system/default.nix
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
{...}: {
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue