From 7badef86af2c5e2157f9b5a74565913ed7313098 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Wed, 31 Dec 2025 01:01:54 -0500 Subject: remove unused variabled (and add nixd lsp) --- lib/files.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/files.nix b/lib/files.nix index 156ec7c..f4e6e50 100644 --- a/lib/files.nix +++ b/lib/files.nix @@ -9,12 +9,12 @@ # set of ssh keys sshKeys = builtins.filter - (path: lib.strings.hasSuffix "pub" path) (getFiles ../files/keys); + (filePath: lib.strings.hasSuffix "pub" filePath) (getFiles ../files/keys); # set of gpg keys gpgKeys = builtins.filter - (path: lib.strings.hasSuffix "asc" path) (getFiles ../files/keys); + (filePath: lib.strings.hasSuffix "asc" filePath) (getFiles ../files/keys); in { inherit getFiles; inherit certs; -- cgit v1.2.3-freya