diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-12-31 01:17:49 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-12-31 01:22:56 -0500 |
| commit | 80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9 (patch) | |
| tree | 9df75bbfc0522c5868da40cbc966ff10b4d3d62a /lib/files.nix | |
| parent | remove unused variabled (and add nixd lsp) (diff) | |
| download | dotfiles-nix-80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9.tar.gz dotfiles-nix-80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9.tar.bz2 dotfiles-nix-80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9.zip | |
doing some linting
Diffstat (limited to 'lib/files.nix')
| -rw-r--r-- | lib/files.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/files.nix b/lib/files.nix index f4e6e50..960d1d0 100644 --- a/lib/files.nix +++ b/lib/files.nix @@ -1,7 +1,7 @@ {lib, ...}: let # gets list of files from a directory getFiles = folder: - lib.attrsets.mapAttrsToList (name: type: "${folder}/${name}") (builtins.readDir folder); + lib.attrsets.mapAttrsToList (name: _: "${folder}/${name}") (builtins.readDir folder); # gets custom set of root certs certs = getFiles ../files/certs; |