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

@ -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, ... }:
{
imports = [
"${nixpkgs-flake}/nixos/modules/installer/cd-dvd/installation-cd-graphical-combined.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";
networking.wireless.enable = false;
#Many installs will need this, and it won't hurt either way
services.qemuGuest.enable = true;
}