nixos/profiles/common/ntp.nix
2025-09-25 23:28:10 +02:00

11 lines
150 B
Nix

{ ... }:
{
services.timesyncd = {
enable = true;
servers = [
"ntp-1.int.infra.auro.re"
"ntp-2.int.infra.auro.re"
];
};
}