feat(services): deploy a partially-declarative ERP (Dolibarr) on erp.dgnum.eu

This is required for various services we will need, e.g. accounting and more.
This commit is contained in:
Raito Bezarius 2024-01-21 21:11:29 +01:00
parent 1f67e3c310
commit 4850098fb6
2 changed files with 12 additions and 0 deletions

View file

@ -19,6 +19,7 @@ lib.extra.mkConfig {
"redirections"
"static"
"wordpress"
"dolibarr"
];
extraConfig = {

View file

@ -0,0 +1,11 @@
{ ... }:
{
services.dolibarr = {
enable = true;
domain = "erp.dgnum.eu";
nginx = {
forceSSL = true;
enableACME = true;
};
};
}