mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
12 lines
284 B
Nix
12 lines
284 B
Nix
_: {
|
|
services.tzupdate.enable = true;
|
|
systemd.timers.tzupdate = {
|
|
description = "Attempt to update timezone every hour";
|
|
timerConfig = {
|
|
OnBootSec="1m";
|
|
OnUnitInactiveSec="1h";
|
|
Unit = "tzupdate.service";
|
|
};
|
|
wantedBy = [ "timers.target" ];
|
|
};
|
|
}
|