nixos/listmonk.nix
2025-02-09 11:48:42 +00:00

17 lines
331 B
Nix

{ pkgs, config, ... }: {
services.listmonk = {
enable = true;
database.createLocally = true;
settings.app.address = "127.0.0.1:9002";
};
services.nginx.virtualHosts."news.cebula.camp" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:9002";
};
};
}