aboutsummaryrefslogtreecommitdiff
path: root/hosts/common/system/locale.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-18 09:30:13 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-18 09:30:39 -0800
commit0d6c0c34ad6a73509011de25ff7453488005f177 (patch)
tree293cddb1ff5ace71b45b217e32e8812abe2640b9 /hosts/common/system/locale.nix
parentdesktop: enable natural scrolling (diff)
downloadinfra-0d6c0c34ad6a73509011de25ff7453488005f177.tar.gz
system: add locale and security
Diffstat (limited to 'hosts/common/system/locale.nix')
-rw-r--r--hosts/common/system/locale.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/hosts/common/system/locale.nix b/hosts/common/system/locale.nix
new file mode 100644
index 0000000..53174e3
--- /dev/null
+++ b/hosts/common/system/locale.nix
@@ -0,0 +1,12 @@
+{ config, ... }:
+
+{
+ # Select internationalisation properties.
+ i18n.defaultLocale = "en_US.UTF-8";
+
+ time.timeZone = "America/Los_Angeles";
+
+ location.latitude = 37.8715;
+ location.longitude = -122.2730;
+ location.provider = "manual";
+}