mirror of
https://github.com/RGBCube/ncc
synced 2025-07-28 18:47:44 +00:00
7 lines
189 B
Nix
7 lines
189 B
Nix
_: self: super: let
|
|
inherit (self) filter hasSuffix;
|
|
inherit (self.filesystem) listFilesRecursive;
|
|
in {
|
|
collectNix = path: listFilesRecursive path
|
|
|> filter (hasSuffix ".nix");
|
|
}
|