14 lines
367 B
Nix
14 lines
367 B
Nix
|
{ 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;
|
||
|
}
|