summaryrefslogtreecommitdiff
path: root/modules/system/datetime/openntpd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/datetime/openntpd.nix')
-rw-r--r--modules/system/datetime/openntpd.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/modules/system/datetime/openntpd.nix b/modules/system/datetime/openntpd.nix
deleted file mode 100644
index ec59d5b..0000000
--- a/modules/system/datetime/openntpd.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ pkgs, ... }:
-{
- services.openntpd = {
- enable = true;
-
- extraConfig = ''
- listen on 127.0.0.1
- listen on ::1
- '';
- };
-
- environment.systemPackages = [ pkgs.openntpd ];
-}