1
0
Fork 0
puter/profiles/server/time.nix
2025-05-18 01:08:10 +02:00

13 lines
136 B
Nix

{
config,
lib,
...
}:
let
cfg = config.profiles.server;
in
{
config = lib.mkIf cfg.enable {
time.timeZone = "UTC";
};
}