summaryrefslogtreecommitdiff
path: root/system-profiles
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2022-11-21 11:34:04 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2022-11-21 11:34:04 +0100
commit3705bb3ef68b56892ec840c23683d5728136b5fa (patch)
tree87276284f27a888a8decb96b07de9a8171ea107a /system-profiles
parent90fc8b481039bbc47036edb9733676cb39ae1885 (diff)
downloadnixos-3705bb3ef68b56892ec840c23683d5728136b5fa.tar
nixos-3705bb3ef68b56892ec840c23683d5728136b5fa.tar.gz
nixos-3705bb3ef68b56892ec840c23683d5728136b5fa.tar.bz2
nixos-3705bb3ef68b56892ec840c23683d5728136b5fa.tar.xz
nixos-3705bb3ef68b56892ec840c23683d5728136b5fa.zip
...
Diffstat (limited to 'system-profiles')
-rw-r--r--system-profiles/default-locale.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/system-profiles/default-locale.nix b/system-profiles/default-locale.nix
index 6915184a..6c95504b 100644
--- a/system-profiles/default-locale.nix
+++ b/system-profiles/default-locale.nix
@@ -3,8 +3,14 @@
3with lib; 3with lib;
4 4
5{ 5{
6 i18n.defaultLocale = "en_DK.UTF-8"; 6 i18n = {
7 console.keyMap = "dvorak-programmer"; 7 defaultLocale = "en_DK.UTF-8";
8 extraLocaleSettings = {
9 "TIME_STYLE" = "posix-long-iso";
10 };
11 supportedLocales = [ "C.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "en_DK.UTF-8/UTF-8" ];
12 };
13 console.keyMap = mkDefault "dvorak-programmer";
8 14
9 time.timeZone = mkDefault "Europe/Berlin"; 15 time.timeZone = mkDefault "Europe/Berlin";
10} 16}