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

14 lines
379 B
Nix
Raw Normal View History

2025-06-09 00:39:57 +03:00
{ lib, nixpkgs-flake, ... }:
2025-06-09 00:16:35 +03:00
{
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;
}