From 9560f7bf7864b262ca473da0b7a3bfef579a886a Mon Sep 17 00:00:00 2001 From: blahai Date: Mon, 9 Dec 2024 17:04:45 +0200 Subject: [PATCH] Theia: forgejo stuff --- hosts/theia/configuration.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/hosts/theia/configuration.nix b/hosts/theia/configuration.nix index 596e3b7..6ed5af1 100644 --- a/hosts/theia/configuration.nix +++ b/hosts/theia/configuration.nix @@ -111,7 +111,9 @@ rules."50-tailscale" = { onState = [ "routable" ]; script = '' - ${lib.getExe pkgs.ethtool} -K ens3 rx-udp-gro-forwarding on rx-gro-list off + ${ + lib.getExe pkgs.ethtool + } -K ens3 rx-udp-gro-forwarding on rx-gro-list off ''; }; }; @@ -197,9 +199,19 @@ forgejo = { package = pkgs.forgejo; enable = true; + lfs.enable = true; settings = { + "ui.meta" = { + AUTHOR = "Elissa"; + DESCRIPTION = "My own selfhosted git place for random stuff :3"; + }; DEFAULT.APP_NAME = "githai"; federation.ENABLED = true; + service.DISABLE_REGISTRATION = true; + actions = { + ENABLED = true; + DEFAULT_ACTIONS_URL = "github"; + }; server = { ROOT_URL = "https://git.blahai.gay"; DOMAIN = "git.blahai.gay";