mirror of
https://gitlab.com/rensa-nix/core.git
synced 2025-12-12 06:10:08 +01:00
5 lines
152 B
Nix
5 lines
152 B
Nix
{l}: rec {
|
|
filter = import ./filter.nix {inherit l;};
|
|
select = import ./select.nix {inherit filter;};
|
|
get = import ./get.nix {inherit select;};
|
|
}
|