10 lines
256 B
Nix
10 lines
256 B
Nix
|
{ nixpkgs-flake, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
"${nixpkgs-flake}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
|
||
|
];
|
||
|
custom.platform.installer.enable = true;
|
||
|
isoImage.squashfsCompression = "zstd";
|
||
|
system.installer.channel.enable = false;
|
||
|
}
|