init(clanServices): add zerotier boilerplate to clanServices

This commit is contained in:
Johannes Kirschbauer
2025-04-16 11:34:58 +02:00
parent 49977bd935
commit 69ce584b96
3 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{ self, lib, ... }:
{
clan.inventory.modules = {
zerotier-redux = lib.modules.importApply ./zerotier-redux/default.nix {
inherit (self) packages;
};
};
}