Files
infra/modules/clan/gitea/default.nix
kurogeek 1a3a532a9d mob next [ci-skip] [ci skip] [skip ci]
lastFile:modules/clan/gitea/default.nix
2025-08-07 11:02:18 +07:00

21 lines
326 B
Nix

{ ... }:
{
_class = "clan.service";
manifest.name = "gitea";
manifest.description = "Git with a cup of tea!";
manifest.categories = [ "System" ];
roles.default = {
perInstance.nixosModule =
{
config,
lib,
...
}:
{
services.gitea.enable = true;
};
};
}