flake: Correct construction of NixOS hydra jobs
This commit is contained in:
parent
2e06c2dfec
commit
a20616c011
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue