2014-04-14 14:26:48 +00:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
2012-07-24 17:53:17 +00:00
|
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
|
with lib;
|
2009-03-06 12:25:38 +00:00
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
|
glibcLocales = pkgs.glibcLocales.override {
|
|
|
|
|
allLocales = any (x: x == "all") config.i18n.supportedLocales;
|
|
|
|
|
locales = config.i18n.supportedLocales;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
###### interface
|
|
|
|
|
|
2009-03-06 12:25:38 +00:00
|
|
|
|
options = {
|
2013-09-04 11:05:09 +00:00
|
|
|
|
|
2009-03-06 12:25:38 +00:00
|
|
|
|
i18n = {
|
|
|
|
|
defaultLocale = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.str;
|
2009-03-06 12:25:38 +00:00
|
|
|
|
default = "en_US.UTF-8";
|
|
|
|
|
example = "nl_NL.UTF-8";
|
2013-10-30 16:37:45 +00:00
|
|
|
|
description = ''
|
2009-03-06 12:25:38 +00: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 16:37:45 +00:00
|
|
|
|
'';
|
2009-03-06 12:25:38 +00:00
|
|
|
|
};
|
|
|
|
|
|
2009-06-05 17:19:30 +00:00
|
|
|
|
supportedLocales = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.listOf types.str;
|
2009-06-05 17:19:30 +00: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
|
|
|
|
|
xlink:href="http://sourceware.org/cgi-bin/cvsweb.cgi/libc/localedata/SUPPORTED?cvsroot=glibc"/>.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2016-07-03 00:29:21 +00:00
|
|
|
|
consolePackages = mkOption {
|
|
|
|
|
type = types.listOf types.package;
|
2016-07-01 00:51:24 +00:00
|
|
|
|
default = with pkgs.kbdKeymaps; [ dvp neo ];
|
2016-11-21 15:26:03 +00:00
|
|
|
|
defaultText = ''with pkgs.kbdKeymaps; [ dvp neo ]'';
|
2016-07-03 00:29:21 +00:00
|
|
|
|
description = ''
|
2016-12-16 16:58:40 +00:00
|
|
|
|
List of additional packages that provide console fonts, keymaps and
|
2016-07-03 00:29:21 +00:00
|
|
|
|
other resources.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-03-06 12:25:38 +00:00
|
|
|
|
consoleFont = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.str;
|
2015-06-09 18:11:41 +00:00
|
|
|
|
default = "Lat2-Terminus16";
|
2009-03-06 12:25:38 +00:00
|
|
|
|
example = "LatArCyrHeb-16";
|
2013-10-30 16:37:45 +00:00
|
|
|
|
description = ''
|
2009-03-06 12:25:38 +00:00
|
|
|
|
The font used for the virtual consoles. Leave empty to use
|
|
|
|
|
whatever the <command>setfont</command> program considers the
|
|
|
|
|
default font.
|
2013-10-30 16:37:45 +00:00
|
|
|
|
'';
|
2009-03-06 12:25:38 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-09-06 06:43:57 +00:00
|
|
|
|
consoleUseXkbConfig = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = false;
|
|
|
|
|
description = ''
|
|
|
|
|
If set, configure the console keymap from the xserver keyboard
|
|
|
|
|
settings.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-03-06 12:25:38 +00:00
|
|
|
|
consoleKeyMap = mkOption {
|
2014-02-17 19:46:33 +00:00
|
|
|
|
type = mkOptionType {
|
|
|
|
|
name = "string or path";
|
|
|
|
|
check = t: (isString t || types.path.check t);
|
|
|
|
|
};
|
|
|
|
|
|
2009-03-06 12:25:38 +00:00
|
|
|
|
default = "us";
|
|
|
|
|
example = "fr";
|
2013-10-30 16:37:45 +00:00
|
|
|
|
description = ''
|
2009-03-06 12:25:38 +00:00
|
|
|
|
The keyboard mapping table for the virtual consoles.
|
2013-10-30 16:37:45 +00:00
|
|
|
|
'';
|
2009-03-06 12:25:38 +00:00
|
|
|
|
};
|
2012-10-18 15:54:07 +00:00
|
|
|
|
|
2015-09-03 03:27:56 +00:00
|
|
|
|
consoleColors = mkOption {
|
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
default = [];
|
|
|
|
|
example = [
|
|
|
|
|
"002b36" "dc322f" "859900" "b58900"
|
|
|
|
|
"268bd2" "d33682" "2aa198" "eee8d5"
|
|
|
|
|
"002b36" "cb4b16" "586e75" "657b83"
|
|
|
|
|
"839496" "6c71c4" "93a1a1" "fdf6e3"
|
|
|
|
|
];
|
|
|
|
|
description = ''
|
|
|
|
|
The 16 colors palette used by the virtual consoles.
|
|
|
|
|
Leave empty to use the default colors.
|
|
|
|
|
Colors must be in hexadecimal format and listed in
|
|
|
|
|
order from color 0 to color 15.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-03-06 12:25:38 +00:00
|
|
|
|
};
|
2012-10-18 15:54:07 +00:00
|
|
|
|
|
2009-03-06 12:25:38 +00:00
|
|
|
|
};
|
2012-10-18 15:54:07 +00:00
|
|
|
|
|
2009-03-06 12:25:38 +00:00
|
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
|
###### implementation
|
2009-06-05 17:19:30 +00:00
|
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
|
config = {
|
2009-06-05 17:19:30 +00:00
|
|
|
|
|
2015-09-06 06:43:57 +00:00
|
|
|
|
i18n.consoleKeyMap = with config.services.xserver;
|
|
|
|
|
mkIf config.i18n.consoleUseXkbConfig
|
|
|
|
|
(pkgs.runCommand "xkb-console-keymap" { preferLocalBuild = true; } ''
|
|
|
|
|
'${pkgs.ckbcomp}/bin/ckbcomp' -model '${xkbModel}' -layout '${layout}' \
|
|
|
|
|
-option '${xkbOptions}' -variant '${xkbVariant}' > "$out"
|
|
|
|
|
'');
|
|
|
|
|
|
2015-04-19 20:45:08 +00:00
|
|
|
|
environment.systemPackages =
|
|
|
|
|
optional (config.i18n.supportedLocales != []) glibcLocales;
|
2009-06-05 17:19:30 +00:00
|
|
|
|
|
2014-06-13 15:56:46 +00:00
|
|
|
|
environment.sessionVariables =
|
2014-04-18 17:03:50 +00:00
|
|
|
|
{ LANG = config.i18n.defaultLocale;
|
|
|
|
|
LOCALE_ARCHIVE = "/run/current-system/sw/lib/locale/locale-archive";
|
|
|
|
|
};
|
|
|
|
|
|
2015-04-19 20:45:08 +00:00
|
|
|
|
systemd.globalEnvironment = mkIf (config.i18n.supportedLocales != []) {
|
|
|
|
|
LOCALE_ARCHIVE = "${glibcLocales}/lib/locale/locale-archive";
|
|
|
|
|
};
|
2009-06-05 17:19:30 +00:00
|
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
|
# ‘/etc/locale.conf’ is used by systemd.
|
|
|
|
|
environment.etc = singleton
|
|
|
|
|
{ target = "locale.conf";
|
|
|
|
|
source = pkgs.writeText "locale.conf"
|
|
|
|
|
''
|
|
|
|
|
LANG=${config.i18n.defaultLocale}
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-07-24 17:53:17 +00:00
|
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
|
};
|
2009-03-06 12:25:38 +00:00
|
|
|
|
}
|