diff --git a/hosts/installer-graphical/configuration.nix b/hosts/installer-graphical/configuration.nix new file mode 100644 index 0000000..fa64922 --- /dev/null +++ b/hosts/installer-graphical/configuration.nix @@ -0,0 +1,13 @@ +{ nixpkgs-flake, ... }: +{ + imports = [ + "${nixpkgs-flake}/nixos/modules/installer/cd-dvd/installation-cd-graphical-combined.nix" + ../../shared/base.nix + ]; + + 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; +} diff --git a/hosts/installer-graphical/state.nix b/hosts/installer-graphical/state.nix new file mode 100644 index 0000000..ffcd441 --- /dev/null +++ b/hosts/installer-graphical/state.nix @@ -0,0 +1 @@ +{ }