1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2024-08-20 21:46:27 +02:00
parent 7f6bd60769
commit 6773439226
2 changed files with 4 additions and 2 deletions

View file

@ -35,11 +35,11 @@
];
};
genHosts = (nixpkgs.lib.pipe (builtins.readDir ./hosts) [
genHosts = nixpkgs.lib.pipe (builtins.readDir ./hosts) [
(nixpkgs.lib.filterAttrs (name: type: type == "directory" && name != "default.nix"))
builtins.attrNames
nixpkgs.lib.genAttrs
]);
];
in
genHosts commonNixosSystem;
};