diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-12-31 01:01:54 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-12-31 01:01:54 -0500 |
| commit | 7badef86af2c5e2157f9b5a74565913ed7313098 (patch) | |
| tree | ba8442157b3e1c98a74535cf49748a57dc2c9f07 /lib/files.nix | |
| parent | shinji: add some defaults from nixos-hardware (diff) | |
| download | dotfiles-nix-7badef86af2c5e2157f9b5a74565913ed7313098.tar.gz dotfiles-nix-7badef86af2c5e2157f9b5a74565913ed7313098.tar.bz2 dotfiles-nix-7badef86af2c5e2157f9b5a74565913ed7313098.zip | |
remove unused variabled (and add nixd lsp)
Diffstat (limited to 'lib/files.nix')
| -rw-r--r-- | lib/files.nix | 4 |
1 files changed, 2 insertions, 2 deletions
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; |