From c79f5fc9faa7790fa7612a8c121b3637faf08470 Mon Sep 17 00:00:00 2001 From: lassulus Date: Tue, 7 Nov 2023 20:27:19 +0100 Subject: flake: export all systems --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 1ff183e7..a44446b0 100644 --- a/flake.nix +++ b/flake.nix @@ -12,15 +12,15 @@ description = "stockholm"; outputs = { self, nixpkgs, nix-writers }: { - nixosConfigurations.hotdog = nixpkgs.lib.nixosSystem { + nixosConfigurations = nixpkgs.lib.mapAttrs (machineName: _: nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs.stockholm = self; specialArgs.nix-writers = nix-writers; - specialArgs.secrets = toString ./krebs/0tests/data/secrets; + specialArgs.secrets = nixpkgs.lib.mkDefault (toString ./krebs/0tests/data/secrets); modules = [ - ./krebs/1systems/hotdog/config.nix + ./krebs/1systems/${machineName}/config.nix ]; - }; + }) (builtins.readDir ./krebs/1systems); nixosModules = let -- cgit v1.2.3