mob next [ci-skip] [ci skip] [skip ci]

lastFile:flake.nix
This commit is contained in:
2025-12-01 14:44:10 +07:00
parent 938ab2bdd2
commit ee05c0dad4
5 changed files with 51 additions and 1 deletions

11
lib/default.nix Normal file
View File

@@ -0,0 +1,11 @@
final: prev:
let
callLibs = file: import file { lib = prev; };
in
{
lib = prev.lib.extend (
finalLib: prevLib: {
getInterface = callLibs ./zerotier-interface.nix { };
}
);
}