2010-09-25 09:32:57 +00:00
|
|
|
# This module defines a small NixOS configuration. It does not
|
|
|
|
# contain any graphical stuff.
|
|
|
|
|
2018-07-20 20:56:59 +00:00
|
|
|
{ config, lib, ... }:
|
2010-09-25 09:32:57 +00:00
|
|
|
|
2015-04-19 20:45:08 +00:00
|
|
|
with lib;
|
|
|
|
|
2010-09-25 09:32:57 +00:00
|
|
|
{
|
2015-04-19 20:45:08 +00:00
|
|
|
environment.noXlibs = mkDefault true;
|
2015-08-06 10:30:38 +00: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 11:59:07 +00:00
|
|
|
|
2018-03-26 18:22:04 +00:00
|
|
|
documentation.enable = mkDefault false;
|
2016-11-22 21:24:37 +00:00
|
|
|
|
2019-01-26 19:44:05 +00:00
|
|
|
documentation.nixos.enable = mkDefault false;
|
2010-09-25 09:32:57 +00:00
|
|
|
}
|