blob: 248751671342cad8898115e521c3d7c731acc37a (
plain) (
blame)
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
|
{
config,
lib,
...
}: let
cfg = config.soispha.locale;
in {
options.soispha.locale = {
enable = lib.mkEnableOption (lib.mdDoc "locale");
keyMap = lib.mkOption {
type = lib.types.str;
example = "us";
default = "dvorak";
};
};
config = lib.mkIf cfg.enable {
# Set your time zone.
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
i18n = {
defaultLocale = "en_CA.UTF-8";
extraLocaleSettings = {
LANGUAGE = "en_CA:en_US:en";
LC_TIME = "en_DK.UTF-8";
LC_COLLATE = "C.UTF-8";
};
};
# Layout
console = {
inherit (cfg) keyMap;
};
services.xserver.extraLayouts = {
"us-modified" = {
description = "standard us with german and swedish extra chars.";
languages = ["eng" "swe" "deu"];
symbolsFile = ./keymaps/us_modified.xkb;
};
"dvorak-modified" = {
description = "standard dvorak english with german and swedish extra chars.";
languages = ["eng" "swe" "deu"];
symbolsFile = ./keymaps/dvorak_modified.xkb;
};
};
};
}
|