nix-config/modules/timezone-imperatively.nix

11 lines
160 B
Nix
Raw Normal View History

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