From 0dfbcc33262423db03bb669dc6ba02cea042c071 Mon Sep 17 00:00:00 2001 From: Sergei Poljanski Date: Thu, 19 Mar 2026 19:14:48 +0300 Subject: [PATCH] timezones now managed by GNOME --- modules/locale.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/locale.nix b/modules/locale.nix index 26bd528..3303320 100644 --- a/modules/locale.nix +++ b/modules/locale.nix @@ -2,8 +2,9 @@ { config, pkgs, lib, ... }: { - # Set your time zone. - time.timeZone = "Europe/Tallinn"; + # Let GNOME manage timezone via automatic location + time.timeZone = null; + services.automatic-timezoned.enable = true; # Select internationalisation properties. i18n.defaultLocale = "en_US.UTF-8";