13 lines
379 B
Nix
13 lines
379 B
Nix
{ 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;
|
|
}
|