init(clanServices): add zerotier boilerplate to clanServices

This commit is contained in:
Johannes Kirschbauer
2025-04-16 11:34:58 +02:00
parent 3f33cb7dee
commit 101648d657
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;
};
};
}