about summary refs log tree commit diff
path: root/nixos/modules/security
diff options
context:
space:
mode:
authorNoah S-C <noah@santschi-cooney.ch>2024-04-03 17:52:28 +0100
committerGitHub <noreply@github.com>2024-04-03 17:52:28 +0100
commit5c4858ad7ba00640baa8747144526c41bec5c4c4 (patch)
treedcf76e5a33f0f5ec06eb1b72ea3c7c63cb26ac95 /nixos/modules/security
parent1a5acce391490a45bca85941b319e5f21fef337d (diff)
More specific link to tag spec
Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
Diffstat (limited to 'nixos/modules/security')
-rw-r--r--nixos/modules/security/sudo.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/security/sudo.nix b/nixos/modules/security/sudo.nix
index 92ab2cf63becf..e2e0a981ca922 100644
--- a/nixos/modules/security/sudo.nix
+++ b/nixos/modules/security/sudo.nix
@@ -165,7 +165,7 @@ in
                 options = mkOption {
                   type = with types; listOf (enum [ "NOPASSWD" "PASSWD" "NOEXEC" "EXEC" "SETENV" "NOSETENV" "LOG_INPUT" "NOLOG_INPUT" "LOG_OUTPUT" "NOLOG_OUTPUT" "MAIL" "NOMAIL" "FOLLOW" "NOFLLOW" "INTERCEPT" "NOINTERCEPT"]);
                   description = mdDoc ''
-                    Options for running the command. Refer to the [sudo manual](https://www.sudo.ws/docs/man/1.9.15/sudoers.man/).
+                    Options for running the command. Refer to the [sudo manual](https://www.sudo.ws/docs/man/1.9.15/sudoers.man/#Tag_Spec).
                   '';
                   default = [];
                 };