mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
ignore nix files prefixed with _
This commit is contained in:
parent
1fa9c291e4
commit
36f3aec2e0
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ rec {
|
|||
listNixFilesRecursive = wrench [
|
||||
builtins.unsafeDiscardStringContext
|
||||
lib.filesystem.listFilesRecursive
|
||||
(builtins.filter (lib.hasSuffix ".nix"))
|
||||
(builtins.filter (x: !lib.hasPrefix "_" x && lib.hasSuffix ".nix" x))
|
||||
];
|
||||
|
||||
mkModules =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue