summaryrefslogtreecommitdiff
path: root/system-profiles
diff options
context:
space:
mode:
Diffstat (limited to 'system-profiles')
-rw-r--r--system-profiles/default-locale.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/system-profiles/default-locale.nix b/system-profiles/default-locale.nix
index add98696..65b5da56 100644
--- a/system-profiles/default-locale.nix
+++ b/system-profiles/default-locale.nix
@@ -1,4 +1,4 @@
1{ pkgs, lib, options, config, ... }: 1{ lib, options, ... }:
2 2
3{ 3{
4 config = lib.foldr lib.recursiveUpdate {} ([ 4 config = lib.foldr lib.recursiveUpdate {} ([
@@ -6,8 +6,8 @@
6 i18n = { 6 i18n = {
7 defaultLocale = "en_DK.UTF-8"; 7 defaultLocale = "en_DK.UTF-8";
8 }; 8 };
9 console.keyMap = mkDefault "dvorak-programmer"; 9 console.keyMap = lib.mkDefault "dvorak-programmer";
10 time.timeZone = mkDefault "Europe/Berlin"; 10 time.timeZone = lib.mkDefault "Europe/Berlin";
11 } 11 }
12 ] ++ (lib.optional (options ? i18n.extraLocales) { 12 ] ++ (lib.optional (options ? i18n.extraLocales) {
13 i18n.extraLocales = [ "C.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" ]; 13 i18n.extraLocales = [ "C.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" ];