2012-07-24 19:53:17 +02:00
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-03-06 13:25:38 +01:00
|
|
|
|
|
|
|
|
|
###### interface
|
2012-07-24 19:53:17 +02:00
|
|
|
|
|
2009-03-06 13:25:38 +01:00
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
i18n = {
|
|
|
|
|
defaultLocale = mkOption {
|
|
|
|
|
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.
|
|
|
|
|
It also determines the character set, such as UTF-8.
|
|
|
|
|
";
|
|
|
|
|
};
|
|
|
|
|
|
2009-06-05 19:19:30 +02:00
|
|
|
|
supportedLocales = mkOption {
|
|
|
|
|
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
|
|
|
|
|
xlink:href="http://sourceware.org/cgi-bin/cvsweb.cgi/libc/localedata/SUPPORTED?cvsroot=glibc"/>.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-03-06 13:25:38 +01:00
|
|
|
|
consoleFont = mkOption {
|
|
|
|
|
default = "lat9w-16";
|
|
|
|
|
example = "LatArCyrHeb-16";
|
|
|
|
|
description = "
|
|
|
|
|
The font used for the virtual consoles. Leave empty to use
|
|
|
|
|
whatever the <command>setfont</command> program considers the
|
|
|
|
|
default font.
|
|
|
|
|
";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
consoleKeyMap = mkOption {
|
|
|
|
|
default = "us";
|
|
|
|
|
example = "fr";
|
|
|
|
|
description = "
|
|
|
|
|
The keyboard mapping table for the virtual consoles.
|
|
|
|
|
";
|
2013-03-09 12:27:27 +01:00
|
|
|
|
type = types.uniq types.string;
|
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
|
|
|
|
};
|
2012-10-18 17:54:07 +02:00
|
|
|
|
|
2009-03-06 13:25:38 +01:00
|
|
|
|
###### implementation
|
|
|
|
|
|
2009-06-05 19:19:30 +02:00
|
|
|
|
glibcLocales = pkgs.glibcLocales.override {
|
2012-07-24 19:53:17 +02:00
|
|
|
|
allLocales = any (x: x == "all") config.i18n.supportedLocales;
|
2009-06-05 19:19:30 +02:00
|
|
|
|
locales = config.i18n.supportedLocales;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
2009-05-25 15:52:18 +02:00
|
|
|
|
{
|
2009-06-05 19:19:30 +02:00
|
|
|
|
require = options;
|
|
|
|
|
|
2012-07-24 19:53:17 +02:00
|
|
|
|
environment.systemPackages = [ glibcLocales ];
|
2009-06-05 19:19:30 +02:00
|
|
|
|
|
|
|
|
|
environment.shellInit =
|
|
|
|
|
''
|
|
|
|
|
export LANG=${config.i18n.defaultLocale}
|
|
|
|
|
'';
|
2012-07-24 19:53:17 +02:00
|
|
|
|
|
|
|
|
|
# ‘/etc/locale.conf’ is used by systemd.
|
|
|
|
|
environment.etc = singleton
|
|
|
|
|
{ target = "locale.conf";
|
|
|
|
|
source = pkgs.writeText "locale.conf"
|
|
|
|
|
''
|
|
|
|
|
LANG=${config.i18n.defaultLocale}
|
|
|
|
|
'';
|
|
|
|
|
};
|
2009-03-06 13:25:38 +01:00
|
|
|
|
}
|