From 0b0c8cd0b25a2095000f403366b8fac197e275a3 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 6 Apr 2022 12:55:58 -0700 Subject: gitea: fix the module Quick fix for now, we will add these values as options to the module once we confirm everything is still working. --- modules/services/gitea/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules') diff --git a/modules/services/gitea/default.nix b/modules/services/gitea/default.nix index 3551069..47abd55 100644 --- a/modules/services/gitea/default.nix +++ b/modules/services/gitea/default.nix @@ -24,8 +24,8 @@ in { enable = true; user = "git"; domain = "git.fcuny.net"; - appName = "${cfg.domain}"; - rootUrl = "https://${cfg.domain}/"; + appName = "git.fcuny.net"; + rootUrl = "https://git.fcuny.net/"; httpAddress = "127.0.0.1"; httpPort = 8002; log.level = "Error"; @@ -33,7 +33,7 @@ in { dump.enable = false; database = { type = "sqlite3"; - user = cfg.user; + user = "git"; }; }; -- cgit 1.4.1