nix/host/x86_64-linux/home/OpenNtpd.nix

10 lines
133 B
Nix
Raw Normal View History

2025-01-10 10:57:50 +03:00
{ ... }: {
services.openntpd = {
enable = true;
extraConfig = ''
listen on 0.0.0.0
listen on ::
'';
};
}