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

{
  config = lib.foldr lib.recursiveUpdate {} ([
    {
      i18n = {
        defaultLocale = "en_DK.UTF-8";
      };
      console.keyMap = mkDefault "dvorak-programmer";
      time.timeZone = 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" ];
  }));
}