Enable unify v8 service
All checks were successful
Check Flake / check-flake (push) Successful in 56s

This commit is contained in:
Zuckerberg 2024-05-26 17:24:46 -06:00
parent 0bf0b8b88b
commit 74e41de9d6
2 changed files with 14 additions and 0 deletions

View File

@ -218,6 +218,7 @@
4534
8097
9091
8443 # unifi
];
virtualisation.oci-containers.backend = "podman";
@ -227,5 +228,11 @@
configFile = ./dashy.yaml;
};
services.unifi = {
enable = true;
openFirewall = true;
unifiPackage = pkgs.unifi8;
};
boot.binfmt.emulatedSystems = [ "aarch64-linux" "armv7l-linux" ];
}

View File

@ -12,4 +12,11 @@ in
frigate = frigatePkgs.frigate;
actual-server = prev.callPackage ./actualbudget { };
unifi8 = prev.unifi.overrideAttrs (oldAttrs: rec {
version = "8.1.113";
src = prev.fetchurl {
url = "https://dl.ui.com/unifi/8.1.113/unifi_sysvinit_all.deb";
sha256 = "1knm+l8MSb7XKq2WIbehAnz7loRPjgnc+R98zpWKEAE=";
};
});
}