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