From 4fec531240c04402b24c9123ba4b453c879645be Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Thu, 15 May 2025 11:29:05 -0300 Subject: [PATCH] Fixed timezone --- hosts/common/core/nixos.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hosts/common/core/nixos.nix b/hosts/common/core/nixos.nix index 8122b6d..d04e916 100644 --- a/hosts/common/core/nixos.nix +++ b/hosts/common/core/nixos.nix @@ -1,6 +1,9 @@ # Core functionality for every nixos host -{ config, lib, ... }: { + config, + lib, + ... +}: { # Database for aiding terminal-based programs environment.enableAllTerminfo = true; # Enable firmware with a license allowing redistribution @@ -32,5 +35,5 @@ # # FIXME(starter): customize localization values as desired. i18n.defaultLocale = lib.mkDefault "en_US.UTF-8"; - time.timeZone = lib.mkDefault "America/Edmonton"; + time.timeZone = lib.mkDefault "Canada/Atlantic"; }