blob: 65b5da5620c9b47017c2e26b99db36fb31801c63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ lib, options, ... }:
{
config = lib.foldr lib.recursiveUpdate {} ([
{
i18n = {
defaultLocale = "en_DK.UTF-8";
};
console.keyMap = lib.mkDefault "dvorak-programmer";
time.timeZone = lib.mkDefault "Europe/Berlin";
}
] ++ (lib.optional (options ? i18n.extraLocales) {
i18n.extraLocales = [ "C.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" ];
}) ++ (lib.optional (!(options ? i18n.extraLocales)) {
i18n.supportedLocales = [ "C.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" ];
}));
}
|