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

nixos/sudo-rs: Removed unused let-binding
This commit is contained in:
Ilan Joselevich 2023-12-24 19:17:16 +02:00 committed by GitHub
commit 5f64a12a72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,8 +6,6 @@ let
cfg = config.security.sudo-rs;
inherit (config.security.pam) enableSSHAgentAuth;
toUserString = user: if (isInt user) then "#${toString user}" else "${user}";
toGroupString = group: if (isInt group) then "%#${toString group}" else "%${group}";