iso/minimal: use minimal profile
This commit is contained in:
parent
362d351845
commit
191d2115ea
1 changed files with 8 additions and 5 deletions
|
@ -1,14 +1,17 @@
|
|||
# This module defines a small NixOS installation CD. It does not
|
||||
# contain any graphical stuff.
|
||||
|
||||
{ ... }:
|
||||
{ lib, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ ./installation-cd-base.nix
|
||||
];
|
||||
imports = [
|
||||
../../profiles/minimal.nix
|
||||
./installation-cd-base.nix
|
||||
];
|
||||
|
||||
isoImage.edition = "minimal";
|
||||
documentation.man.enable = lib.mkOverride 500 true;
|
||||
|
||||
fonts.fontconfig.enable = false;
|
||||
|
||||
isoImage.edition = "minimal";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue