Merge pull request #276475 from nbraud/nixos/sudo-rs/enableSSHAgentAuth

nixos/sudo-rs: Removed unused let-binding

authored by Ilan Joselevich and committed by GitHub 5f64a12a eb95ddc4

-2
-2
nixos/modules/security/sudo-rs.nix
··· 6 6 7 7 cfg = config.security.sudo-rs; 8 8 9 - inherit (config.security.pam) enableSSHAgentAuth; 10 - 11 9 toUserString = user: if (isInt user) then "#${toString user}" else "${user}"; 12 10 toGroupString = group: if (isInt group) then "%#${toString group}" else "%${group}"; 13 11