From c90c2e8b0057b208aacad3449dad9a6fefc58054 Mon Sep 17 00:00:00 2001 From: Stefan Weigl-Bosker Date: Thu, 14 Aug 2025 14:54:03 -0600 Subject: nixos: set tz manually --- nixos/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'nixos') diff --git a/nixos/default.nix b/nixos/default.nix index b2fdf38..2dbc85f 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -23,11 +23,11 @@ in default = "nixos"; }; - # timezone = mkOption { - # type = lib.types.str; - # description = "Fallback timezone if location cannot be determined"; - # default = "America/New_York"; - # }; + timezone = mkOption { + type = lib.types.str; + description = "Fallback timezone if location cannot be determined"; + default = "America/New_York"; + }; username = mkOption { type = lib.types.str; @@ -59,7 +59,7 @@ in }; # time.timeZone = lib.mkDefault cfg.timezone; - services.automatic-timezoned.enable = true; + # services.automatic-timezoned.enable = true; nixpkgs.config.allowUnfree = true; -- cgit v1.2.3