basic discourse example

This commit is contained in:
ahtlon
2025-01-20 21:30:48 +01:00
committed by kalipso
parent b223f0cb0c
commit 8581f762a2
2 changed files with 14 additions and 0 deletions
+1
View File
@@ -27,6 +27,7 @@ with lib;
../modules/malobeo_user.nix
../modules/sshd.nix
../modules/minimal_tools.nix
../modules/try/discourse.nix #also wiki.js nextcloud+collective
];
services.malobeo-tasklist.enable = true;
+13
View File
@@ -0,0 +1,13 @@
{}:{
services.discourse = {
enable = true;
hostname = "forum.malobeol.org";
admin = {
email = "admin@";
username = "admin";
fullName = "Admin";
passwordFile = ""; #sops?
};
secretKeyBaseFile = "/run/keys/secret_key_base";
};
}