summaryrefslogtreecommitdiff
path: root/modules/services/openntpd.nix
blob: ebd148d03eb1b57c9bdf21a6f316ebc125718c7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{
  services.openntpd = {
    enable = true;

    extraConfig = ''
      listen on 127.0.0.1
      listen on ::1
    '';
  };
}