diff --git a/nixos/tests/sudo-rs.nix b/nixos/tests/sudo-rs.nix index 334a2d0fa3ea..150c0d5b4f1d 100644 --- a/nixos/tests/sudo-rs.nix +++ b/nixos/tests/sudo-rs.nix @@ -1,5 +1,5 @@ # Some tests to ensure sudo is working properly. -{ pkgs, sudo-rs, ... }: +{ pkgs, ... }: let inherit (pkgs.lib) mkIf optionalString; password = "helloworld"; @@ -24,7 +24,7 @@ in security.sudo = { enable = true; - package = sudo-rs; + package = pkgs.sudo-rs; wheelNeedsPassword = false; extraRules = [ @@ -55,7 +55,7 @@ in }; security.sudo = { - package = sudo-rs; + package = pkgs.sudo-rs; enable = true; wheelNeedsPassword = false; execWheelOnly = true; @@ -93,5 +93,5 @@ in with subtest("non-wheel users should be unable to run sudo thanks to execWheelOnly"): strict.fail('faketty -- su - noadmin -c "sudo --help"') - '';; + ''; })