mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
12 lines
210 B
Nix
12 lines
210 B
Nix
# This module defines a small NixOS installation CD. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{ config, lib, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ ./installation-cd-base.nix
|
|
../../profiles/minimal.nix
|
|
];
|
|
}
|