diff options
Diffstat (limited to 'snowfall/modules/nixos/system/default.nix')
| -rw-r--r-- | snowfall/modules/nixos/system/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/snowfall/modules/nixos/system/default.nix b/snowfall/modules/nixos/system/default.nix index 83263ba..96c5654 100644 --- a/snowfall/modules/nixos/system/default.nix +++ b/snowfall/modules/nixos/system/default.nix @@ -12,6 +12,11 @@ in { default = null; type = nullOr str; }; + + timezone = mkOption { + default = "America/Los_Angeles"; + type = nullOr str; + }; }; config = { @@ -19,5 +24,7 @@ in { networking.hostName = cfg.hostname; networking.hostId = cfg.id; + + time.timeZone = cfg.timezone; }; } |