summaryrefslogtreecommitdiff
path: root/system-profiles/default-locale.nix
blob: 6c95504bc6cb6648b70bc368be632848d11bc2df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, ... }:

with lib;

{
  i18n = {
    defaultLocale = "en_DK.UTF-8";
    extraLocaleSettings = {
      "TIME_STYLE" = "posix-long-iso";
    };
    supportedLocales = [ "C.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "en_DK.UTF-8/UTF-8" ];
  };
  console.keyMap = mkDefault "dvorak-programmer";

  time.timeZone = mkDefault "Europe/Berlin";
}