mirror of
https://gitlab.com/rensa-nix/core.git
synced 2025-12-11 22:00:09 +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;};
|
|
}
|