summaryrefslogtreecommitdiffstats
path: root/nixos/modules/config/i18n.nix
blob: 5b9d862db8235766f82092b7591a948e69d777a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
{
  config,
  lib,
  pkgs,
  ...
}:
let
  cfg = config.i18n;
  localeConf = pkgs.writeText "locale.conf" ''
    LANG=${cfg.defaultLocale}
    ${lib.concatStringsSep "\n" (lib.mapAttrsToList (n: v: "${n}=${v}") cfg.extraLocaleSettings)}
  '';
  sanitizeUTF8Capitalization =
    lang: (lib.replaceStrings [ "utf8" "utf-8" "UTF8" ] [ "UTF-8" "UTF-8" "UTF-8" ] lang);
  aggregatedLocales =
    lib.optionals (cfg.defaultLocale != "C") [
      "${cfg.defaultLocale}/${cfg.defaultCharset}"
    ]
    ++ lib.pipe cfg.extraLocaleSettings [
      # See description of extraLocaleSettings for why is this ignored here.
      (x: lib.removeAttrs x [ "LANGUAGE" ])
      (lib.mapAttrs (n: v: (sanitizeUTF8Capitalization v)))
      # C locales are always installed
      (lib.filterAttrs (n: v: v != "C"))
      (lib.mapAttrsToList (LCRole: lang: lang + "/" + (cfg.localeCharsets.${LCRole} or "UTF-8")))
    ]
    ++ (map sanitizeUTF8Capitalization (
      lib.optionals (builtins.isList cfg.extraLocales) cfg.extraLocales
    ))
    ++ (lib.optional (builtins.isString cfg.extraLocales) cfg.extraLocales);
in
{
  ###### interface

  options = {

    i18n = {
      glibcLocales = lib.mkOption {
        type = lib.types.nullOr lib.types.path;
        default =
          if pkgs.glibcLocales != null then
            pkgs.glibcLocales.override {
              allLocales = lib.elem "all" cfg.supportedLocales;
              locales = cfg.supportedLocales;
            }
          else
            null;
        defaultText = lib.literalExpression ''
          if pkgs.glibcLocales != null then
            pkgs.glibcLocales.override {
              allLocales = lib.elem "all" config.i18n.supportedLocales;
              locales = config.i18n.supportedLocales;
            }
          else
            null
        '';
        example = lib.literalExpression "pkgs.glibcLocales";
        description = ''
          Customized pkg.glibcLocales package.

          Changing this option can disable handling of i18n.defaultLocale
          and supportedLocale.
        '';
      };

      defaultLocale = lib.mkOption {
        type = lib.types.str;
        default = "en_US.UTF-8";
        example = "nl_NL.UTF-8";
        description = ''
          The default locale. It determines the language for program messages,
          the format for dates and times, sort order, and so on. Setting the
          default character set is done via {option}`i18n.defaultCharset`.
        '';
      };
      defaultCharset = lib.mkOption {
        type = lib.types.str;
        default = "UTF-8";
        example = "ISO-8859-8";
        description = ''
          The default locale character set.
        '';
      };

      extraLocales = lib.mkOption {
        type = lib.types.either (lib.types.listOf lib.types.str) (lib.types.enum [ "all" ]);
        default = [ ];
        example = [ "nl_NL.UTF-8/UTF-8" ];
        description = ''
          Additional locales that the system should support, besides the ones
          configured with {option}`i18n.defaultLocale` and
          {option}`i18n.extraLocaleSettings`.
          Set this to `"all"` to install all available locales.
        '';
      };

      extraLocaleSettings = lib.mkOption {
        type = lib.types.attrsOf lib.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 `LANG`
          which can be configured with {option}`i18n.defaultLocale`. Note that
          the `/UTF-8` suffix used in {option}`i18n.extraLocales` indicates a
          character set, and it must not be added manually here. To use a
          non-`UTF-8` character set such as ISO-XXXX-8, the
          {option}`i18n.localeCharsets` can be used.

          Note that if the [`LANGUAGE`
          key](https://www.gnu.org/software/gettext/manual/html_node/The-LANGUAGE-variable.html)
          is used in this option, it is ignored when computing the locales
          required to be installed, because the possible values of this key are
          more diverse and flexible then the others.
        '';
      };
      localeCharsets = lib.mkOption {
        type = lib.types.attrsOf lib.types.str;
        default = { };
        example = {
          LC_MESSAGES = "ISO-8859-15";
          LC_TIME = "ISO-8859-1";
        };
        description = ''
          Per each {option}`i18n.extraLocaleSettings`, choose the character set
          to use for it. Essentially defaults to UTF-8 for all of them.

          Note that for a locale category that uses the `C` locale, setting a
          character set to it via this setting is ignored.
        '';
      };

      supportedLocales = lib.mkOption {
        type = lib.types.listOf lib.types.str;
        visible = false;
        default = lib.unique (
          [
            "C.UTF-8/UTF-8"
            "en_US.UTF-8/UTF-8"
          ]
          ++ aggregatedLocales
        );
        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
          `"all"` means that all locales supported by
          Glibc will be installed.  A full list of supported locales
          can be found at <https://sourceware.org/git/?p=glibc.git;a=blob;f=localedata/SUPPORTED>.
        '';
      };

      imperativeLocale = lib.mkEnableOption ''
        imperative locale and keyboard management via localectl.

        When enabled, locale and keyboard settings can be changed at runtime
        using `localectl set-locale` and `localectl set-keymap`.
        When disabled (the default), these settings are managed declaratively
        through {option}`i18n.defaultLocale`, {option}`i18n.extraLocaleSettings`,
        and {option}`console.keyMap`.
      '';

    };

  };

  ###### implementation

  config = {
    warnings =
      lib.optional
        (
          !(
            (lib.subtractLists cfg.supportedLocales aggregatedLocales) == [ ]
            || lib.elem "all" cfg.supportedLocales
          )
        )
        ''
          `i18n.supportedLocales` is deprecated in favor of `i18n.extraLocales`,
          and it seems you are using `i18n.supportedLocales` and forgot to
          include some locales specified in `i18n.defaultLocale`,
          `i18n.extraLocales` or `i18n.extraLocaleSettings`.

          If you're trying to install additional locales not specified in
          `i18n.defaultLocale` or `i18n.extraLocaleSettings`, consider adding
          only those locales to `i18n.extraLocales`.
        '';

    environment.systemPackages =
      # We increase the priority a little, so that plain glibc in systemPackages can't win.
      lib.optional (cfg.glibcLocales != null && cfg.supportedLocales != [ ]) (
        lib.setPrio (-1) cfg.glibcLocales
      );

    environment.sessionVariables = {
      LOCALE_ARCHIVE = "/run/current-system/sw/lib/locale/locale-archive";
    }
    # When imperative, leave LANG/LC_* to pam_systemd so /etc/set-environment
    # does not override what localectl wrote to /etc/locale.conf.
    // lib.optionalAttrs (!cfg.imperativeLocale) (
      {
        LANG = cfg.defaultLocale;
      }
      // cfg.extraLocaleSettings
    );

    systemd.globalEnvironment = lib.mkIf (cfg.glibcLocales != null && cfg.supportedLocales != [ ]) {
      LOCALE_ARCHIVE = "${cfg.glibcLocales}/lib/locale/locale-archive";
    };

    # ‘/etc/locale.conf’ is used by systemd.
    # If imperative, see below
    environment.etc."locale.conf" = lib.mkIf (!cfg.imperativeLocale) {
      source = localeConf;
    };

    # When imperative, seed /etc/locale.conf on first boot from declared defaults
    # so the system doesn’t fall back to C.UTF-8
    systemd.tmpfiles.rules = lib.mkIf cfg.imperativeLocale [
      "C /etc/locale.conf - - - - ${localeConf}"
    ];
  };
}