nixos: cleanup

This commit is contained in:
Vivian 2021-11-21 21:56:17 +01:00
parent 50fb05ae5f
commit b1fcc4a338
7 changed files with 31 additions and 44 deletions

View file

@ -5,8 +5,7 @@
{ config, pkgs, ... }:
let mosquittoPort = 1883;
in {
imports = [
];
imports = [ ];
networking.hostName = "mosquitto";
@ -56,5 +55,6 @@ in {
};
};
networking.firewall.allowedTCPPorts = [ mosquittoPort config.services.zigbee2mqtt.settings.frontend.port ];
networking.firewall.allowedTCPPorts =
[ mosquittoPort config.services.zigbee2mqtt.settings.frontend.port ];
}