nixos-conf/hosts/installer.nix

12 lines
335 B
Nix
Raw Normal View History

2025-07-03 18:57:05 +03:00
{ nixpkgs-flake, lib, ... }:
2025-06-09 00:42:34 +03:00
{
imports = [
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-07-03 18:57:05 +03:00
boot.supportedFilesystems.zfs = lib.mkForce true;
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;
}