11 lines
160 B
Nix
11 lines
160 B
Nix
|
{
|
||
|
pkgs,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
# Set timezone to null to make it imperatively settable
|
||
|
time.timeZone = lib.mkForce null;
|
||
|
|
||
|
services.tzupdate.enable = true;
|
||
|
}
|