This commit is contained in:
muon 2025-01-25 15:25:30 +00:00
parent d423950236
commit 7d6b69cd46
4 changed files with 6 additions and 3 deletions

View file

@ -16,5 +16,6 @@
./homebox.nix
./share.nix
./vault.nix
./git.nix
];
}

View file

@ -15,13 +15,13 @@ in with lib; {
config = mkIf cfg.enable {
services.forgejo = {
enable = true;
stateDir = "/srv/forgejo";
lfs.enable = true;
settings.server = {
HTTP_ADDR = "0.0.0.0";
HTTP_PORT = port;
SSH_PORT = 91722;
SSH_PORT = 22917;
DOMAIN = "git.muon.host";
ROOT_URL = "https://git.muon.host";
};
};
};