dotfiles/nix/modules/nixos/features/homelab/gitea.nix
Oliver Davies 5ebf83a334 Un-reverse the directory names
This makes it consistent with other places where I use fzf.
2024-11-26 15:18:58 +00:00

22 lines
378 B
Nix

{ config, lib, ... }:
{
options.features.homelab.gitea.enable = lib.mkEnableOption "Enable gitea";
config = lib.mkIf config.features.homelab.gitea.enable {
services.gitea = {
enable = true;
settings = {
server = {
HTTP_PORT = 2222;
};
service = {
DISABLE_REGISTRATION = true;
};
};
};
};
}