21 lines
326 B
Nix
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;
|
|
};
|
|
};
|
|
}
|