infrastructure/machines/web01/_configuration.nix
Raito Bezarius 4850098fb6 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.
2024-01-21 21:14:43 +01:00

30 lines
430 B
Nix

{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-fail2ban"
"dgn-web"
];
enabledServices = [
# List of services to enable
"castopod"
"eleves"
"linkal"
"matterbridge"
"metis"
"ntfy-sh"
"plausible"
"redirections"
"static"
"wordpress"
"dolibarr"
];
extraConfig = {
services.netbird.enable = true;
};
root = ./.;
}