summaryrefslogtreecommitdiff
path: root/lib/files.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/files.nix')
-rw-r--r--lib/files.nix2
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;