nix-config/hosts/Anton/gitea.nix

18 lines
276 B
Nix
Raw Normal View History

2024-07-28 10:16:48 +02:00
{ pkgs, pkgs-unstable, ... }:
{
services.gitea = {
enable = true;
package = pkgs-unstable.gitea;
stateDir = "/mnt/data/services/gitea";
settings = {
server = {
DOMAIN = "git.huwe.mooo.com";
HTTP_PORT = 3000;
};
};
};
}