1
1
Fork 0
deployed-nixos-server-and-apps/nixos-apps/erp.fancyTypist.dev.nix

14 lines
272 B
Nix
Raw Normal View History

2024-01-25 09:26:56 -05:00
{
services.dolibarr = {
enable = true;
domain = "erp.fancyTypist.dev";
database.passwordFile = "/run/keys/dolibarr-db-ini-password";
nginx = {
forceSSL = true;
enableACME = true;
};
};
networking.firewall.allowedTCPPorts = [ 80 ];
}