From 16bdde3504f9aa0db558aa51e355a20a02d49388 Mon Sep 17 00:00:00 2001 From: lelgenio Date: Thu, 5 Oct 2023 17:58:09 -0300 Subject: [PATCH] system: set TZ environment variable --- system/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/system/configuration.nix b/system/configuration.nix index 3ae55b7..6d6a85c 100644 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -25,6 +25,7 @@ networking.networkmanager.enable = true; # Set your time zone. time.timeZone = "America/Sao_Paulo"; + environment.variables.TZ = config.time.timeZone; # Select internationalisation properties. i18n.defaultLocale = "pt_BR.utf8";