aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-08-14 14:54:03 -0600
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-08-14 14:54:03 -0600
commitc90c2e8b0057b208aacad3449dad9a6fefc58054 (patch)
tree008e365658ca40bca1e8ef457bab23b1fd3998ef /nixos
parent60d322a08d35603c6825aed4efd4a6a70bd0b0aa (diff)
downloadhome-c90c2e8b0057b208aacad3449dad9a6fefc58054.tar.gz
nixos: set tz manually
Diffstat (limited to 'nixos')
-rw-r--r--nixos/default.nix12
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;