From 43d8b1ef3c515c1fea5a0693b6b4a92891f5d10e Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Wed, 4 Feb 2015 17:30:22 -0800 Subject: openntpd: Fixes --- nixos/modules/services/networking/openntpd.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'nixos/modules') diff --git a/nixos/modules/services/networking/openntpd.nix b/nixos/modules/services/networking/openntpd.nix index 7d01246ed769..ef5250888989 100644 --- a/nixos/modules/services/networking/openntpd.nix +++ b/nixos/modules/services/networking/openntpd.nix @@ -5,10 +5,7 @@ with lib; let cfg = config.services.openntpd; - package = pkgs.openntpd.override { - privsepUser = "ntp"; - privsepPath = "/var/empty"; - }; + package = pkgs.openntpd_nixos; cfgFile = pkgs.writeText "openntpd.conf" '' ${concatStringsSep "\n" (map (s: "server ${s}") cfg.servers)} @@ -55,7 +52,7 @@ in services.ntp.enable = mkForce false; # Add ntpctl to the environment for status checking - environment.systemPackages = [ openntpd ]; + environment.systemPackages = [ package ]; users.extraUsers = singleton { name = "ntp"; -- cgit 1.4.1