Enable redmine

This commit is contained in:
2026-02-18 02:02:12 +01:00
parent 41a1f8e17e
commit 48bb34847a
2 changed files with 11 additions and 0 deletions

View File

@@ -12,6 +12,7 @@
./gitlab-runner.nix
./gitea.nix
./openproject.nix
./redmine.nix
../hut/public-inbox.nix
../hut/msmtp.nix
../module/p.nix

10
m/tent/redmine.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
services.redmine = {
enable = true;
port = 3003;
database.type = "sqlite3";
# Redmine::Utils::relative_url_root = "/redmine"
};
}