2010-09-25 11:32:57 +02:00
|
|
|
# This module defines a small NixOS configuration. It does not
|
|
|
|
# contain any graphical stuff.
|
|
|
|
|
2018-07-20 22:56:59 +02:00
|
|
|
{ config, lib, ... }:
|
2010-09-25 11:32:57 +02:00
|
|
|
|
2015-04-19 22:45:08 +02:00
|
|
|
with lib;
|
|
|
|
|
2010-09-25 11:32:57 +02:00
|
|
|
{
|
2015-04-19 22:45:08 +02:00
|
|
|
environment.noXlibs = mkDefault true;
|
2015-08-06 12:30:38 +02:00
|
|
|
|
|
|
|
# This isn't perfect, but let's expect the user specifies an UTF-8 defaultLocale
|
|
|
|
i18n.supportedLocales = [ (config.i18n.defaultLocale + "/UTF-8") ];
|
2016-09-05 13:59:07 +02:00
|
|
|
|
2018-03-26 20:22:04 +02:00
|
|
|
documentation.enable = mkDefault false;
|
2016-11-22 22:24:37 +01:00
|
|
|
|
2019-01-26 20:44:05 +01:00
|
|
|
documentation.nixos.enable = mkDefault false;
|
2010-09-25 11:32:57 +02:00
|
|
|
}
|