nixos-configuration/hosts/aluminium/services/ntp.nix
2025-04-16 22:54:28 +02:00

12 lines
296 B
Nix

{
services.chrony = {
enable = true;
extraConfig = ''
allow 192.168.0.0/24
allow 192.168.10.0/24
leapsectz right/UTC
'';
};
networking.firewall.interfaces.lechner.allowedUDPPorts = [ 123 ];
networking.firewall.interfaces.heizung.allowedUDPPorts = [ 123 ];
}