modules: stop filtering files starting with _

There are no instances of this in-tree.
This commit is contained in:
Eman Resu
2026-07-23 08:47:55 +02:00
committed by Robert Helgesson
parent 041a999e8c
commit cbfe673271
-1
View File
@@ -86,7 +86,6 @@ let
(
dir:
lib.pipe (builtins.readDir dir) [
(lib.filterAttrs (path: _kind: !lib.hasPrefix "_" path))
(lib.filterAttrs (
_path: kind: kind == "directory" || (kind == "regular" && lib.hasSuffix ".nix" _path)
))