blob: 0396651ceac95f54686cef4e89a80ff4d2fa7abd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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>
./core.nix
# Include extra stuff for specific pc etc.
# ./pc_t14.nix
];
}
|