about summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hosts/common/system/default.nix1
-rw-r--r--modules/system/locale/default.nix (renamed from hosts/common/system/locale.nix)9
2 files changed, 2 insertions, 8 deletions
diff --git a/hosts/common/system/default.nix b/hosts/common/system/default.nix
index 3e546ff..fda467f 100644
--- a/hosts/common/system/default.nix
+++ b/hosts/common/system/default.nix
@@ -4,7 +4,6 @@
   imports = [
     ./boot.nix
     ./hardware.nix
-    ./locale.nix
     ./network.nix
     ./security.nix
     ./software.nix
diff --git a/hosts/common/system/locale.nix b/modules/system/locale/default.nix
index 53174e3..2026764 100644
--- a/hosts/common/system/locale.nix
+++ b/modules/system/locale/default.nix
@@ -1,12 +1,7 @@
-{ config, ... }:
-
-{
+# Language settings
+{ ... }: {
   # 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";
 }