nixos-conf/hosts/installer/configuration.nix

12 lines
304 B
Nix
Raw Permalink Normal View History

2025-06-09 00:42:34 +03:00
{ nixpkgs-flake, ... }:
{
imports = [
../../shared/base.nix
2025-06-14 14:03:58 +03:00
"${nixpkgs-flake}/nixos/modules/installer/cd-dvd/installation-cd-graphical-combined.nix"
2025-06-09 00:42:34 +03:00
];
2025-06-14 14:03:58 +03:00
services.qemuGuest.enable = true;
2025-06-09 00:42:34 +03:00
isoImage.squashfsCompression = "gzip -Xcompression-level 1";
networking.wireless.enable = false;
}