NixOS-Configs/iso.nix
2024-06-30 09:47:45 -05:00

15 lines
404 B
Nix

# This module defines a small NixOS installation CD. It does not
# contain any graphical stuff.
{
config,
pkgs,
...
}: {
imports = [
<nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix>
# Provide an initial copy of the NixOS channel so that the user
# doesn't need to run "nix-channel --update" first.
<nixpkgs/nixos/modules/installer/cd-dvd/channel.nix>
];
}