nixos-configuration/hosts/iron/services/unifi-controller.nix
Jakob Lechner a77cb59e96
Add iron
2023-05-01 16:11:44 +00:00

9 lines
170 B
Nix

{ pkgs, ... }:
{
services.unifi = {
enable = true;
openFirewall = true;
unifiPackage = pkgs.unifi;
};
networking.firewall.allowedTCPPorts = [ 8443 ];
}