From 1e9e8a0db0da8081586f76a14a4bdd51dbbb3322 Mon Sep 17 00:00:00 2001 From: nicoo Date: Sun, 24 Dec 2023 13:56:56 +0000 Subject: [PATCH] nixos/sudo-rs: Removed unused let-binding Leftover from bcc2d1238a1c97347518812f224921d29aa3b3f8 --- nixos/modules/security/sudo-rs.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/nixos/modules/security/sudo-rs.nix b/nixos/modules/security/sudo-rs.nix index f991675827ef..b4376562c34d 100644 --- a/nixos/modules/security/sudo-rs.nix +++ b/nixos/modules/security/sudo-rs.nix @@ -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}";