Fix installer ISO hydra jobs
This commit is contained in:
parent
dee4a1aaaa
commit
a01fd93831
1 changed files with 8 additions and 4 deletions
12
flake.nix
12
flake.nix
|
@ -78,9 +78,13 @@
|
|||
hydraJobs.hosts = builtins.mapAttrs (
|
||||
_: host: host.config.system.build.toplevel
|
||||
) self.nixosConfigurations;
|
||||
hydraJobs.isos = {
|
||||
installer-graphical = self.nixosConfigurations.installer-graphical.config.build.isoImage;
|
||||
installer-minimal = self.nixosConfigurations.installer-minimal.config.build.isoImage;
|
||||
};
|
||||
hydraJobs.isos =
|
||||
let
|
||||
hosts = self.nixosConfigurations;
|
||||
in
|
||||
{
|
||||
installer-graphical = hosts.installer-graphical.config.system.build.isoImage;
|
||||
installer-minimal = hosts.installer-minimal.config.system.build.isoImage;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue