12 lines
296 B
Nix
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 ];
|
|
}
|