5fb80fcc4b
svn path=/nixos/trunk/; revision=23917
12 lines
204 B
Nix
12 lines
204 B
Nix
# This module defines a small NixOS installation CD. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{config, pkgs, ...}:
|
|
|
|
{
|
|
require = [
|
|
./installation-cd-base.nix
|
|
../../profiles/rescue.nix
|
|
];
|
|
}
|