chore: initial commit

This commit is contained in:
technofab 2025-08-05 14:55:13 +02:00
commit 3aeff518bb
No known key found for this signature in database
20 changed files with 1122 additions and 0 deletions

5
lib/compat/default.nix Normal file
View file

@ -0,0 +1,5 @@
{l}: rec {
filter = import ./filter.nix {inherit l;};
select = import ./select.nix {inherit filter;};
get = import ./get.nix {inherit select;};
}