nixos-conf/hosts/installer-graphical/configuration.nix

14 lines
367 B
Nix
Raw Normal View History

2025-06-09 00:42:34 +03:00
{ 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;
}