zammad setup

This commit is contained in:
Clara Dautermann 2025-04-08 19:06:54 +02:00
parent 0ac3bbfbe2
commit df35107001
2 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,15 @@
{ lib, pkgs, config, ... }: {
services.zammad = {
enable = true;
openPorts = true;
host = "10.8.1.3";
database.createLocally = true;
redis.createLocally = true;
};
networking.firewall.allowedTCPPorts = [
config.services.zammad.port
config.services.zammad.websocketPort
];
}