infra/nix/os/snippets/timezone.nix

10 lines
144 B
Nix
Raw Normal View History

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