From 51df19bf916633d8f5b0fa0a655d5bff8c6135e1 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Wed, 28 Aug 2024 14:05:50 -0700 Subject: [PATCH] feat(systems): pre-create flake keys that are operated on --- systems/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/systems/default.nix b/systems/default.nix index 738cac70..84c28679 100644 --- a/systems/default.nix +++ b/systems/default.nix @@ -30,6 +30,11 @@ }; in { + # Ensure the existence of keys that are operated over + nixosConfigurations = {}; + homeConfigurations = {}; + darwinConfigurations = {}; + } // { systems = hostConfigs; } // set.merge (set.mapToValues processHost hostConfigs)