mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
ad7f2d120e
Shouldn't be needed for anything.
13 lines
200 B
Nix
13 lines
200 B
Nix
# This module defines a small NixOS installation CD. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{ ... }:
|
|
|
|
{
|
|
imports =
|
|
[ ./installation-cd-base.nix
|
|
];
|
|
|
|
fonts.fontconfig.enable = false;
|
|
}
|