From: Scott Worley Date: Mon, 18 May 2020 19:02:16 +0000 (-0700) Subject: Absolute path to sudo X-Git-Url: http://git.scottworley.com/auto-upgrade-with-pinch/commitdiff_plain/4acf153c79292b2e2e7c8f2cafdbdd0d076b97a3 Absolute path to sudo --- 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} ''; }) ];