mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
18 lines
420 B
Nix
18 lines
420 B
Nix
# This module defines a small NixOS configuration. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
environment.noXlibs = mkDefault true;
|
|
|
|
# This isn't perfect, but let's expect the user specifies an UTF-8 defaultLocale
|
|
i18n.supportedLocales = [ (config.i18n.defaultLocale + "/UTF-8") ];
|
|
|
|
documentation.enable = mkDefault false;
|
|
|
|
documentation.nixos.enable = mkDefault false;
|
|
}
|