summaryrefslogtreecommitdiff
path: root/system-profiles
diff options
context:
space:
mode:
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}