diff options
| author | Fuwn <[email protected]> | 2024-09-06 21:38:16 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-06 21:38:16 -0700 |
| commit | 67acfc5da20f4b348e3826788243c997990a9a3c (patch) | |
| tree | 08a1cc47f648eb001d5f8362716337c5af58d92f /modules/system/locale.nix | |
| parent | Bump (diff) | |
| download | nixos-config-67acfc5da20f4b348e3826788243c997990a9a3c.tar.xz nixos-config-67acfc5da20f4b348e3826788243c997990a9a3c.zip | |
Bump
Diffstat (limited to 'modules/system/locale.nix')
| -rw-r--r-- | modules/system/locale.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/system/locale.nix b/modules/system/locale.nix new file mode 100644 index 0000000..2648b82 --- /dev/null +++ b/modules/system/locale.nix @@ -0,0 +1,9 @@ +{ secrets, ... }: +{ + location.provider = "geoclue2"; + + time = { + timeZone = "${secrets.timezone}"; + hardwareClockInLocalTime = false; + }; +} |