summary refs log tree commit diff
path: root/nixos/modules/services/networking/openntpd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/networking/openntpd.nix')
-rw-r--r--nixos/modules/services/networking/openntpd.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/openntpd.nix b/nixos/modules/services/networking/openntpd.nix
index bd8a7a04a2af..2f9031481d1d 100644
--- a/nixos/modules/services/networking/openntpd.nix
+++ b/nixos/modules/services/networking/openntpd.nix
@@ -41,8 +41,7 @@ in
 
     systemd.services.openntpd = {
       description = "OpenNTP Server";
-      wantedBy = [ "ip-up.target" ];
-      partOf = [ "ip-up.target" ];
+      wantedBy = [ "multi-user.target" ];
       serviceConfig.ExecStart = "${package}/sbin/ntpd -d -f ${cfgFile}";
     };
   };