mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
thanks max 2 electric boogaloo
This commit is contained in:
parent
9d80ee02e5
commit
43557a4b19
1 changed files with 2 additions and 1 deletions
|
|
@ -29,7 +29,8 @@ rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
listNixFilesRecursive =
|
listNixFilesRecursive =
|
||||||
path: builtins.filter (lib.hasSuffix ".nix") (lib.filesystem.listFilesRecursive path);
|
path:
|
||||||
|
builtins.filter (lib.hasSuffix ".nix") (map toString (lib.filesystem.listFilesRecursive path));
|
||||||
|
|
||||||
importAll = path: map (module: (import module inputs)) (listNixFilesRecursive path);
|
importAll = path: map (module: (import module inputs)) (listNixFilesRecursive path);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue