From d88c628f57d66ff937114a64ffd1b98186f96d64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 29 Aug 2023 22:03:57 +0200 Subject: [PATCH] buildClan: also allow machines without settings --- lib/build-clan/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/build-clan/default.nix b/lib/build-clan/default.nix index 888eb6b2..297e94a7 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