fix: set a timezone

This commit is contained in:
arcnmx 2024-04-11 13:16:30 -07:00
parent 16135e95f0
commit a63b0f35cd
2 changed files with 4 additions and 3 deletions

View file

@ -1,5 +1,4 @@
{
config,
pkgs,
...
}: {

View file

@ -1,3 +1,5 @@
{config, ...}: {
services.tzupdate.enable = true;
{lib, ...}: let
inherit (lib.modules) mkDefault;
in {
time.timeZone = mkDefault "America/Vancouver";
}