2009-06-11 02:51:27 -07:00
|
|
|
# This module defines a small NixOS installation CD. It does not
|
|
|
|
# contain any graphical stuff.
|
|
|
|
|
2011-11-08 08:39:13 -08:00
|
|
|
{ config, pkgs, ... }:
|
2009-06-11 02:51:27 -07:00
|
|
|
|
|
|
|
{
|
2013-09-04 04:05:09 -07:00
|
|
|
imports =
|
2011-11-08 08:39:13 -08:00
|
|
|
[ ./installation-cd-base.nix
|
|
|
|
../../profiles/minimal.nix
|
|
|
|
];
|
2009-06-11 02:51:27 -07:00
|
|
|
}
|