about summary refs log tree commit diff
path: root/modules/services
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-06 12:55:58 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-06 12:55:58 -0700
commit0b0c8cd0b25a2095000f403366b8fac197e275a3 (patch)
treea8b50758c15c238f2ed0c9f3e0aaa1bee653b6b4 /modules/services
parentmodules: import packages (diff)
downloadworld-0b0c8cd0b25a2095000f403366b8fac197e275a3.tar.gz
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.
Diffstat (limited to 'modules/services')
-rw-r--r--modules/services/gitea/default.nix6
1 files changed, 3 insertions, 3 deletions
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";
       };
     };