Merge pull request 'buildClan: also allow machines without settings' (#210) from Mic92-main into main

This commit is contained in:
clan-bot
2023-08-29 20:04:18 +00:00

View File

@@ -15,7 +15,7 @@ let
else { };
nixosConfigurations = lib.mapAttrs
(name: _mod:
(name: _:
nixpkgs.lib.nixosSystem {
modules = [
(machineSettings name)
@@ -23,6 +23,6 @@ let
] ++ lib.attrValues clan.clanModules;
specialArgs = specialArgs;
})
machinesDirs;
(machinesDirs // machines);
in
nixosConfigurations