nixos-conf/hosts/installer/configuration.nix

11 lines
304 B
Nix

{ nixpkgs-flake, ... }:
{
imports = [
../../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;
}