summaryrefslogtreecommitdiff
path: root/installer-profiles/cd-dvd.nix
blob: ac12d8851846b2c42f31b7a57f58243cb1292da6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ flakeInputs, lib, ... }:

{
  imports = [
    "${flakeInputs.nixpkgs.outPath}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
  ];

  config = {
    isoImage.squashfsCompression = "zstd -Xcompression-level 9";
    system.installer.channel.enable = false;
    boot.loader.grub.memtest86.enable = lib.mkForce false;
  };
}