From 4acf153c79292b2e2e7c8f2cafdbdd0d076b97a3 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Mon, 18 May 2020 12:02:16 -0700 Subject: [PATCH] Absolute path to sudo --- modules/auto-upgrade.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/auto-upgrade.nix b/modules/auto-upgrade.nix index 9ff5ee2..8bf21aa 100644 --- a/modules/auto-upgrade.nix +++ b/modules/auto-upgrade.nix @@ -18,7 +18,7 @@ let as_user() { ${ if cfg.userEnvironment.enable then '' - sudo -u ${escapeShellArg cfg.userEnvironment.user} "$@" + /run/wrappers/bin/sudo -u ${escapeShellArg cfg.userEnvironment.user} "$@" '' else '' : '' @@ -137,7 +137,7 @@ in { (import ../overlays/pinch.nix) (self: super: { auto-upgrade = super.writeShellScriptBin "auto-upgrade" '' - sudo ${auto-upgrade-script} + /run/wrappers/bin/sudo ${auto-upgrade-script} ''; }) ]; -- 2.44.1