summaryrefslogtreecommitdiff
path: root/custom
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-10-29 01:56:12 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2017-10-29 01:56:12 +0200
commit554328a659dc9e086c31ace766aaac1b961e8a68 (patch)
tree3de234cc5ec1490750623e31e5f5c08089e2a9e3 /custom
parentdef01c71415a3f4212171de96665df6f069657ae (diff)
downloadnixos-554328a659dc9e086c31ace766aaac1b961e8a68.tar
nixos-554328a659dc9e086c31ace766aaac1b961e8a68.tar.gz
nixos-554328a659dc9e086c31ace766aaac1b961e8a68.tar.bz2
nixos-554328a659dc9e086c31ace766aaac1b961e8a68.tar.xz
nixos-554328a659dc9e086c31ace766aaac1b961e8a68.zip
Diffstat (limited to 'custom')
-rw-r--r--custom/tinc/yggdrasil.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/custom/tinc/yggdrasil.nix b/custom/tinc/yggdrasil.nix
index cf4c43e2..d0492793 100644
--- a/custom/tinc/yggdrasil.nix
+++ b/custom/tinc/yggdrasil.nix
@@ -81,12 +81,12 @@ in {
81 "hosts/borealis-up" = '' 81 "hosts/borealis-up" = ''
82 #!${pkgs.stdenv.shell} 82 #!${pkgs.stdenv.shell}
83 83
84 exec sudo -En ${borealis-up} 84 exec ${config.security.wrapperDir}/sudo -En ${borealis-up}
85 ''; 85 '';
86 "hosts/borealis-down" = '' 86 "hosts/borealis-down" = ''
87 #!${pkgs.stdenv.shell} 87 #!${pkgs.stdenv.shell}
88 88
89 exec sudo -En ${borealis-down} 89 exec ${config.security.wrapperDir}/sudo -En ${borealis-down}
90 ''; 90 '';
91 }; 91 };
92 }; 92 };