Remove mosquitto

This service is not used anymore.
This commit is contained in:
Jakob Lechner 2024-11-20 00:13:30 +01:00
parent dbb58edd7b
commit dc658529b3
3 changed files with 0 additions and 22 deletions

View file

@ -7,7 +7,6 @@ custom-utils.validatePortAttrset {
coturn-tls = { tcp = [ 5349 5350 ]; udp = [ 5349 5350 ]; };
forgejo-ssh.tcp = 2022;
hedgedoc.tcp = 3000;
mosquitto.tcp = 1883;
nginx-http.tcp = 80;
nginx-https.tcp = 443;
ntfy.tcp = 12474;

View file

@ -4,7 +4,6 @@
./forgejo.nix
./gitlab-runner.nix
./hedgedoc.nix
./mosquitto.nix
./ntfy.nix
./public-ip-tunnel.nix
./webserver.nix

View file

@ -1,20 +0,0 @@
args@{ config, lib, pkgs, custom-utils, ... }:
let
ports = import ../ports.nix args;
in
{
services.mosquitto = {
enable = true;
persistence = true;
listeners = [
{
port = ports.mosquitto.tcp;
settings = {
allow_anonymous = true;
};
}
];
};
networking.firewall.allowedTCPPorts = [ ports.mosquitto.tcp ];
}