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;
|
||||
|
||||
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;
|
||||
};
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue