infra/nix/os/snippets/timezone.nix

6 lines
140 B
Nix
Raw Normal View History

2024-02-08 20:53:22 +01:00
{lib, ...}: let
2024-01-22 23:47:48 +00:00
passwords = import ../../variables/passwords.crypt.nix;
2024-02-08 20:53:22 +01:00
in {
time.timeZone = lib.mkDefault passwords.timeZone.stefan;
}