diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-08-14 14:54:03 -0600 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-08-14 14:54:03 -0600 |
| commit | c90c2e8b0057b208aacad3449dad9a6fefc58054 (patch) | |
| tree | 008e365658ca40bca1e8ef457bab23b1fd3998ef /nixos | |
| parent | 60d322a08d35603c6825aed4efd4a6a70bd0b0aa (diff) | |
| download | home-c90c2e8b0057b208aacad3449dad9a6fefc58054.tar.gz | |
nixos: set tz manually
Diffstat (limited to 'nixos')
| -rw-r--r-- | nixos/default.nix | 12 |
1 files changed, 6 insertions, 6 deletions
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; |