nixos/sudo: Remove unused enableSSHAgentAuth let-binding

This commit is contained in:
nicoo 2024-01-01 13:49:23 +00:00
parent b917ee427a
commit 2eac5106f1

View file

@ -6,8 +6,6 @@ let
cfg = config.security.sudo;
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}";