diff --git a/lib/build-clan/default.nix b/lib/build-clan/default.nix index 888eb6b25..297e94a79 100644 --- a/lib/build-clan/default.nix +++ b/lib/build-clan/default.nix @@ -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