10 lines
133 B
Nix
10 lines
133 B
Nix
{ ... }: {
|
|
services.openntpd = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
listen on 0.0.0.0
|
|
listen on ::
|
|
'';
|
|
};
|
|
}
|