summaryrefslogtreecommitdiff
path: root/system-profiles
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2022-08-09 11:23:00 +0300
committerGregor Kleen <gkleen@yggdrasil.li>2022-08-09 11:23:00 +0300
commitc1f62e9827efe7c8e303e3cfa70dac8f544312b1 (patch)
treed20ff0f367804bc87996c6312cebe2fa57b5bd4c /system-profiles
parentde66ba821b2851cb23bcc7b064e84de3dd848e26 (diff)
downloadnixos-c1f62e9827efe7c8e303e3cfa70dac8f544312b1.tar
nixos-c1f62e9827efe7c8e303e3cfa70dac8f544312b1.tar.gz
nixos-c1f62e9827efe7c8e303e3cfa70dac8f544312b1.tar.bz2
nixos-c1f62e9827efe7c8e303e3cfa70dac8f544312b1.tar.xz
nixos-c1f62e9827efe7c8e303e3cfa70dac8f544312b1.zip
...
Diffstat (limited to 'system-profiles')
-rw-r--r--system-profiles/default-locale.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/system-profiles/default-locale.nix b/system-profiles/default-locale.nix
index 0dcea5b5..6915184a 100644
--- a/system-profiles/default-locale.nix
+++ b/system-profiles/default-locale.nix
@@ -1,7 +1,10 @@
1{...}: 1{ lib, ... }:
2
3with lib;
4
2{ 5{
3 i18n.defaultLocale = "en_DK.UTF-8"; 6 i18n.defaultLocale = "en_DK.UTF-8";
4 console.keyMap = "dvorak-programmer"; 7 console.keyMap = "dvorak-programmer";
5 8
6 time.timeZone = "Europe/Berlin"; 9 time.timeZone = mkDefault "Europe/Berlin";
7} 10}