From aaec877fd889c19d0831d9a24ba8d5cba11dbca3 Mon Sep 17 00:00:00 2001 From: Eli Fadi Date: Wed, 18 Mar 2026 12:31:24 +0100 Subject: [PATCH] Enable Forgejo on staging with real DNS --- hosts/staging/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/staging/configuration.nix b/hosts/staging/configuration.nix index 7fcedb2..3cef402 100644 --- a/hosts/staging/configuration.nix +++ b/hosts/staging/configuration.nix @@ -4,6 +4,7 @@ imports = [ ./hardware-configuration.nix ../../modules/common.nix + ../../modules/forgejo.nix ]; networking.hostName = name; @@ -14,6 +15,10 @@ networking.firewall.allowedTCPPorts = [ 22 80 443 ]; + services.flowback = { + forgejoHost = "git-staging.devops.com.se"; + }; + users.users.elifa = { isNormalUser = true; extraGroups = [ "wheel" ];