dotfiles/nix/modules/nixos/features/homelab/gitea.nix
Oliver Davies 07fde36fb0 Homelab updates
- Change domain to opdavies.uk as this works with HTTPS/SSL.
- Switch Nginx to Caddy.
2025-01-01 14:46:27 +00:00

37 lines
667 B
Nix

{ config, lib, ... }:
with lib;
let
port = 2222;
in
{
options.features.homelab.gitea.enable = mkEnableOption "Enable gitea";
config = mkIf config.features.homelab.gitea.enable {
services = {
gitea = {
enable = true;
group = "media";
stateDir = "/mnt/media/gitea";
settings = {
server = {
HTTP_PORT = port;
};
service = {
DISABLE_REGISTRATION = true;
};
};
};
caddy.virtualHosts."gitea.opdavies.uk" = {
useACMEHost = "opdavies.uk";
extraConfig = "reverse_proxy localhost:${toString port}";
};
};
};
}