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