Remove minimal installer image

This commit is contained in:
Vili Sinervä 2025-06-14 14:03:58 +03:00
parent b5b57bba09
commit b098a007bf
Signed by: Vili Sinervä
SSH key fingerprint: SHA256:FladqYjaE4scJY3Hi+gnShZ6ygnTJgixy0I6BAoHyos
5 changed files with 4 additions and 26 deletions

View file

@ -78,13 +78,7 @@
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 =
let hydraJobs.isos.installer = self.nixosConfigurations.installer.config.system.build.isoImage;
hosts = self.nixosConfigurations;
in
{
installer-graphical = hosts.installer-graphical.config.system.build.isoImage;
installer-minimal = hosts.installer-minimal.config.system.build.isoImage;
};
}; };
} }

View file

@ -1,13 +0,0 @@
{ lib, nixpkgs-flake, ... }:
{
imports = [
"${nixpkgs-flake}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
../../shared/base.nix
];
isoImage.squashfsCompression = "gzip -Xcompression-level 1";
networking.networkmanager.enable = lib.mkForce false;
#Many installs will need this, and it won't hurt either way
services.qemuGuest.enable = true;
}

View file

@ -1 +0,0 @@
{ }

View file

@ -1,13 +1,11 @@
{ nixpkgs-flake, ... }: { nixpkgs-flake, ... }:
{ {
imports = [ imports = [
"${nixpkgs-flake}/nixos/modules/installer/cd-dvd/installation-cd-graphical-combined.nix"
../../shared/base.nix ../../shared/base.nix
"${nixpkgs-flake}/nixos/modules/installer/cd-dvd/installation-cd-graphical-combined.nix"
]; ];
services.qemuGuest.enable = true;
isoImage.squashfsCompression = "gzip -Xcompression-level 1"; isoImage.squashfsCompression = "gzip -Xcompression-level 1";
networking.wireless.enable = false; networking.wireless.enable = false;
#Many installs will need this, and it won't hurt either way
services.qemuGuest.enable = true;
} }