2014-04-14 16:26:48 +02:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
2012-07-24 19:53:17 +02:00
|
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
|
with lib;
|
2009-03-06 13:25:38 +01:00
|
|
|
|
|
2013-09-04 13:05:09 +02:00
|
|
|
|
{
|
|
|
|
|
###### interface
|
|
|
|
|
|
2009-03-06 13:25:38 +01:00
|
|
|
|
options = {
|
2013-09-04 13:05:09 +02:00
|
|
|
|
|
2009-03-06 13:25:38 +01:00
|
|
|
|
i18n = {
|
2017-02-02 07:58:32 +01:00
|
|
|
|
glibcLocales = mkOption {
|
|
|
|
|
type = types.path;
|
2018-02-28 03:01:15 +01:00
|
|
|
|
default = pkgs.buildPackages.glibcLocales.override {
|
2017-02-02 07:58:32 +01:00
|
|
|
|
allLocales = any (x: x == "all") config.i18n.supportedLocales;
|
|
|
|
|
locales = config.i18n.supportedLocales;
|
|
|
|
|
};
|
|
|
|
|
example = literalExample "pkgs.glibcLocales";
|
|
|
|
|
description = ''
|
|
|
|
|
Customized pkg.glibcLocales package.
|
|
|
|
|
|
|
|
|
|
Changing this option can disable handling of i18n.defaultLocale
|
|
|
|
|
and supportedLocale.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-03-06 13:25:38 +01:00
|
|
|
|
defaultLocale = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.str;
|
2009-03-06 13:25:38 +01:00
|
|
|
|
default = "en_US.UTF-8";
|
|
|
|
|
example = "nl_NL.UTF-8";
|
2013-10-30 17:37:45 +01:00
|
|
|
|
description = ''
|
2009-03-06 13:25:38 +01:00
|
|
|
|
The default locale. It determines the language for program
|
|
|
|
|
messages, the format for dates and times, sort order, and so on.
|
|
|
|
|
It also determines the character set, such as UTF-8.
|
2013-10-30 17:37:45 +01:00
|
|
|
|
'';
|
2009-03-06 13:25:38 +01:00
|
|
|
|
};
|
|
|
|
|
|
2018-03-07 15:30:29 +01:00
|
|
|
|
extraLocaleSettings = mkOption {
|
|
|
|
|
type = types.attrsOf types.str;
|
|
|
|
|
default = {};
|
|
|
|
|
example = { LC_MESSAGES = "en_US.UTF-8"; LC_TIME = "de_DE.UTF-8"; };
|
|
|
|
|
description = ''
|
|
|
|
|
A set of additional system-wide locale settings other than
|
|
|
|
|
<literal>LANG</literal> which can be configured with
|
|
|
|
|
<option>i18n.defaultLocale</option>.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-06-05 19:19:30 +02:00
|
|
|
|
supportedLocales = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.listOf types.str;
|
2009-06-05 19:19:30 +02:00
|
|
|
|
default = ["all"];
|
|
|
|
|
example = ["en_US.UTF-8/UTF-8" "nl_NL.UTF-8/UTF-8" "nl_NL/ISO-8859-1"];
|
|
|
|
|
description = ''
|
|
|
|
|
List of locales that the system should support. The value
|
|
|
|
|
<literal>"all"</literal> means that all locales supported by
|
|
|
|
|
Glibc will be installed. A full list of supported locales
|
|
|
|
|
can be found at <link
|
2017-09-03 20:00:35 +02:00
|
|
|
|
xlink:href="https://sourceware.org/git/?p=glibc.git;a=blob;f=localedata/SUPPORTED"/>.
|
2009-06-05 19:19:30 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-03-06 13:25:38 +01:00
|
|
|
|
};
|
2012-10-18 17:54:07 +02:00
|
|
|
|
|
2009-03-06 13:25:38 +01:00
|
|
|
|
};
|
2012-10-18 17:54:07 +02:00
|
|
|
|
|
2009-03-06 13:25:38 +01:00
|
|
|
|
|
2013-09-04 13:05:09 +02:00
|
|
|
|
###### implementation
|
2009-06-05 19:19:30 +02:00
|
|
|
|
|
2013-09-04 13:05:09 +02:00
|
|
|
|
config = {
|
2009-06-05 19:19:30 +02:00
|
|
|
|
|
2015-04-19 22:45:08 +02:00
|
|
|
|
environment.systemPackages =
|
2017-02-02 07:58:32 +01:00
|
|
|
|
optional (config.i18n.supportedLocales != []) config.i18n.glibcLocales;
|
2009-06-05 19:19:30 +02:00
|
|
|
|
|
2014-06-13 17:56:46 +02:00
|
|
|
|
environment.sessionVariables =
|
2014-04-18 19:03:50 +02:00
|
|
|
|
{ LANG = config.i18n.defaultLocale;
|
|
|
|
|
LOCALE_ARCHIVE = "/run/current-system/sw/lib/locale/locale-archive";
|
2018-03-07 15:30:29 +01:00
|
|
|
|
} // config.i18n.extraLocaleSettings;
|
2014-04-18 19:03:50 +02:00
|
|
|
|
|
2015-04-19 22:45:08 +02:00
|
|
|
|
systemd.globalEnvironment = mkIf (config.i18n.supportedLocales != []) {
|
2017-02-02 07:58:32 +01:00
|
|
|
|
LOCALE_ARCHIVE = "${config.i18n.glibcLocales}/lib/locale/locale-archive";
|
2015-04-19 22:45:08 +02:00
|
|
|
|
};
|
2009-06-05 19:19:30 +02:00
|
|
|
|
|
2013-09-04 13:05:09 +02:00
|
|
|
|
# ‘/etc/locale.conf’ is used by systemd.
|
|
|
|
|
environment.etc = singleton
|
|
|
|
|
{ target = "locale.conf";
|
|
|
|
|
source = pkgs.writeText "locale.conf"
|
|
|
|
|
''
|
|
|
|
|
LANG=${config.i18n.defaultLocale}
|
2018-03-07 15:30:29 +01:00
|
|
|
|
${concatStringsSep "\n" (mapAttrsToList (n: v: ''${n}=${v}'') config.i18n.extraLocaleSettings)}
|
2013-09-04 13:05:09 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2012-07-24 19:53:17 +02:00
|
|
|
|
|
2013-09-04 13:05:09 +02:00
|
|
|
|
};
|
2009-03-06 13:25:38 +01:00
|
|
|
|
}
|