init git-daemon module

This commit is contained in:
vi
2025-12-01 00:00:00 +00:00
parent 322d1bd612
commit 4e83773e21
3 changed files with 229 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{ lib, ... }:
let
module = lib.modules.importApply ./default.nix { };
in
{
clan.modules = {
git-daemon = module;
};
}