0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

nixos/sudo-rs: Refactor option definitions

This commit is contained in:
nicoo 2023-10-26 01:16:35 +00:00
parent 03db94319a
commit 46aaa5be70

View file

@ -41,23 +41,11 @@ in
''; '';
}; };
enable = mkOption { enable = mkEnableOption (mdDoc ''
type = types.bool; the {command}`sudo` command, which allows non-root users to execute commands as root.
default = false; '');
description = mdDoc ''
Whether to enable the {command}`sudo` command, which
allows non-root users to execute commands as root.
'';
};
package = mkOption { package = mkPackageOption pkgs "sudo-rs" { };
type = types.package;
default = pkgs.sudo-rs;
defaultText = literalExpression "pkgs.sudo-rs";
description = mdDoc ''
Which package to use for `sudo`.
'';
};
wheelNeedsPassword = mkOption { wheelNeedsPassword = mkOption {
type = types.bool; type = types.bool;