summary refs log tree commit diff
path: root/modules/installer/cd-dvd/installation-cd-minimal.nix
blob: a7498906a86b5f2d790e8fec96b969ce252de710 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# This module defines a small NixOS installation CD.  It does not
# contain any graphical stuff.

{ config, pkgs, ... }:

{
  imports =
    [ ./installation-cd-base.nix
      ../../profiles/minimal.nix
    ];
}