mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 07:34:36 +00:00
f3cc01bd3b
svn path=/nixos/trunk/; revision=23915
12 lines
205 B
Nix
12 lines
205 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/minimal.nix
|
|
];
|
|
}
|