infrastructure/nixos/hosts/hades/unifi/configuration.nix
Vivian 9d976b6c2f
Some checks are pending
Plex Update / update (push) Waiting to run
updated olympus
2024-11-01 16:51:49 +01:00

16 lines
394 B
Nix

{ pkgs, lib, pkgs_stable, ... }: {
system.stateVersion = "21.05";
networking.interfaces.eth0.useDHCP = true;
environment.systemPackages = [ pkgs_stable.mongodb-4_2 ];
services.unifi = {
enable = true;
unifiPackage = pkgs.unifi;
mongodbPackage = pkgs_stable.mongodb-4_2;
openFirewall = true;
};
# Unifi Web Port
networking.firewall.allowedTCPPorts = [ 8443 ];
}