diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-06 12:55:58 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-06 12:55:58 -0700 |
commit | 0b0c8cd0b25a2095000f403366b8fac197e275a3 (patch) | |
tree | a8b50758c15c238f2ed0c9f3e0aaa1bee653b6b4 /modules/services | |
parent | modules: import packages (diff) | |
download | world-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 '')
-rw-r--r-- | modules/services/gitea/default.nix | 6 |
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"; }; }; |