summary refs log tree commit diff
path: root/nixos/modules/services/networking/unbound.nix
diff options
context:
space:
mode:
authorMarius Bakke <m.bakke@warwick.ac.uk>2016-03-06 12:50:41 +0000
committerMarius Bakke <m.bakke@warwick.ac.uk>2016-03-06 12:50:41 +0000
commit7135553cf1ed6b033d6167ea8b2d5b4a30508674 (patch)
tree56f75aa3a4807faf43d7b2843168f2dc04d59ce7 /nixos/modules/services/networking/unbound.nix
parent14e6b7aeb9df36b26914a32061f37930ce0367bc (diff)
downloadnixpkgs-7135553cf1ed6b033d6167ea8b2d5b4a30508674.tar
nixpkgs-7135553cf1ed6b033d6167ea8b2d5b4a30508674.tar.gz
nixpkgs-7135553cf1ed6b033d6167ea8b2d5b4a30508674.tar.bz2
nixpkgs-7135553cf1ed6b033d6167ea8b2d5b4a30508674.tar.lz
nixpkgs-7135553cf1ed6b033d6167ea8b2d5b4a30508674.tar.xz
nixpkgs-7135553cf1ed6b033d6167ea8b2d5b4a30508674.tar.zst
nixpkgs-7135553cf1ed6b033d6167ea8b2d5b4a30508674.zip
unbound: drop sbin directory
Diffstat (limited to 'nixos/modules/services/networking/unbound.nix')
-rw-r--r--nixos/modules/services/networking/unbound.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/unbound.nix b/nixos/modules/services/networking/unbound.nix
index e154aed0843..89762fe5248 100644
--- a/nixos/modules/services/networking/unbound.nix
+++ b/nixos/modules/services/networking/unbound.nix
@@ -113,7 +113,7 @@ in
       '';
 
       serviceConfig = {
-        ExecStart = "${pkgs.unbound}/sbin/unbound -d -c ${stateDir}/unbound.conf";
+        ExecStart = "${pkgs.unbound}/bin/unbound -d -c ${stateDir}/unbound.conf";
         ExecStopPost="${pkgs.utillinux}/bin/umount ${stateDir}/dev/random";
       };
     };