delete unused secrets.nix

This commit is contained in:
Jörg Thalheim 2022-05-15 16:37:18 +02:00
parent ca7671345e
commit ecc1c1d34c
No known key found for this signature in database

View file

@ -1,7 +0,0 @@
with builtins;
let
readSecret = name: readFile (./secrets + "/${name}");
in
mapAttrs
(name: type: if type != "directory" then readSecret name else null)
(readDir ./secrets)