nixosTests.sudo-rs: fix syntax

This commit is contained in:
Maciej Krüger
2023-09-20 13:58:08 +02:00
parent 922926cfbc
commit 61536e7a1f
+4 -4
View File
@@ -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"')
'';;
'';
})