This commit is contained in:
Spectre 2025-02-26 23:52:37 +01:00
parent a2c8e91b3c
commit 5f3ac217d6
3 changed files with 5 additions and 1 deletions

View file

@ -57,7 +57,7 @@
nixosConfigurations = lib.pipe ./hosts [
builtins.readDir
(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))
];
};

View file

@ -0,0 +1,2 @@
{...}: {
}

2
system/default.nix Normal file
View file

@ -0,0 +1,2 @@
{...}: {
}