flake: Correct construction of NixOS hydra jobs

This commit is contained in:
Mikael 2024-08-24 17:56:13 +02:00
parent 2e06c2dfec
commit a20616c011
Signed by: mikael
SSH key fingerprint: SHA256:21QyD2Meiot7jOUVitIR5YkGB/XuXdCvLW1hE6dsri0

View file

@ -126,9 +126,9 @@
shell = self.devShells; shell = self.devShells;
nixos = self.nixosConfigurations nixos = self.nixosConfigurations
|> lib.concatMapAttrs (host: config: { |> lib.concatMapAttrs (name: host: {
${config.pkgs.system} = { ${host.pkgs.system} = {
${host} = config.system.build.toplevel; ${name} = host.config.system.build.toplevel;
}; };
}); });
}; };