diff options
Diffstat (limited to 'hosts/fangorn')
-rw-r--r-- | hosts/fangorn/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/fangorn/default.nix b/hosts/fangorn/default.nix index d319692..5218155 100644 --- a/hosts/fangorn/default.nix +++ b/hosts/fangorn/default.nix @@ -1,4 +1,4 @@ -{ config, inputs, outputs, pkgs, ... }: { +{ config, inputs, lib, outputs, pkgs, ... }: { boot = { kernelPackages = pkgs.linuxPackages_6_12; loader = { @@ -79,4 +79,6 @@ }; system.stateVersion = "23.11"; + + time.timeZone = lib.mkDefault "America/Chicago"; } |