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