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

14 lines
272 B
Nix

{
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 ];
}