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