diff options
Diffstat (limited to 'users/timmy/localization.nix')
-rw-r--r-- | users/timmy/localization.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/users/timmy/localization.nix b/users/timmy/localization.nix new file mode 100644 index 0000000..6762161 --- /dev/null +++ b/users/timmy/localization.nix @@ -0,0 +1,12 @@ +{ lib, ... }: { + time.timeZone = lib.mkDefault "America/Chicago"; # Overwritten by automatic-timezoned + i18n.defaultLocale = "en_US.UTF-8"; + services.xserver.xkb.layout = "us"; + #services.geoclue2 = { + # enableStatic = true; + # staticLatitude = 41.881832; + # staticLongitude = -87.623177; + # staticAltitude = 100; + # staticAccuracy = 500; + #}; +} |