summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hel.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/hel.nix b/hel.nix
index 82ec5109..bbb8c9a5 100644
--- a/hel.nix
+++ b/hel.nix
@@ -146,12 +146,12 @@
146 systemd.services."unbound" = { 146 systemd.services."unbound" = {
147 preStart = '' 147 preStart = ''
148 if [[ -d /etc/unbound ]]; then 148 if [[ -d /etc/unbound ]]; then
149 ${pkgs.util-linux}/bin/mkdir -p /var/lib/unbound/etc/unbound 149 ${pkgs.utillinux}/bin/mkdir -p /var/lib/unbound/etc/unbound
150 ${pkgs.util-linux}/bin/mount --bind -n /etc/unbound /var/lib/unbound/etc/unbound 150 ${pkgs.utillinux}/bin/mount --bind -n /etc/unbound /var/lib/unbound/etc/unbound
151 fi 151 fi
152 ''; 152 '';
153 postStop = '' 153 postStop = ''
154 ${pkgs.util-linux}/bin/umount /var/lib/unbound/etc/unbound 154 ${pkgs.utillinux}/bin/umount /var/lib/unbound/etc/unbound
155 ''; 155 '';
156 }; 156 };
157 157