basic discourse example

This commit is contained in:
ahtlon
2024-11-26 13:57:15 +01:00
committed by kalipso
parent 52824e39ee
commit 2500b8ab9a
2 changed files with 14 additions and 0 deletions

View File

@@ -28,6 +28,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;

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";
};
}