From a20616c011ea4819cb3a0bb62bb73a24b980933f Mon Sep 17 00:00:00 2001 From: Mikael Voss Date: Sat, 24 Aug 2024 17:56:13 +0200 Subject: [PATCH] flake: Correct construction of NixOS hydra jobs --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index ce649c1..05f7fcd 100644 --- a/flake.nix +++ b/flake.nix @@ -126,9 +126,9 @@ shell = self.devShells; nixos = self.nixosConfigurations - |> lib.concatMapAttrs (host: config: { - ${config.pkgs.system} = { - ${host} = config.system.build.toplevel; + |> lib.concatMapAttrs (name: host: { + ${host.pkgs.system} = { + ${name} = host.config.system.build.toplevel; }; }); };