diff options
| author | Fuwn <[email protected]> | 2024-09-03 01:52:03 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-03 01:52:03 -0700 |
| commit | c6deea451af1af2fdf4aee7f1ed74209f312a9b3 (patch) | |
| tree | d725ce5a39939b1379f2a4141cd0ab54c1ef16cc /modules/services/openntpd.nix | |
| parent | home (diff) | |
| download | nixos-config-c6deea451af1af2fdf4aee7f1ed74209f312a9b3.tar.xz nixos-config-c6deea451af1af2fdf4aee7f1ed74209f312a9b3.zip | |
modules
Diffstat (limited to 'modules/services/openntpd.nix')
| -rw-r--r-- | modules/services/openntpd.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/services/openntpd.nix b/modules/services/openntpd.nix new file mode 100644 index 0000000..ebd148d --- /dev/null +++ b/modules/services/openntpd.nix @@ -0,0 +1,10 @@ +{ + services.openntpd = { + enable = true; + + extraConfig = '' + listen on 127.0.0.1 + listen on ::1 + ''; + }; +} |