2009-06-11 10:51:27 +01:00
|
|
|
# This module defines a small NixOS installation CD. It does not
|
|
|
|
# contain any graphical stuff.
|
|
|
|
|
2016-12-28 15:05:30 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-06-11 10:51:27 +01:00
|
|
|
|
|
|
|
{
|
2013-09-04 12:05:09 +01:00
|
|
|
imports =
|
2011-11-08 16:39:13 +00:00
|
|
|
[ ./installation-cd-base.nix
|
2016-12-28 15:05:30 +00:00
|
|
|
];
|
2009-06-11 10:51:27 +01:00
|
|
|
}
|