fix unifi mongo version
All checks were successful
Plex Update / update (push) Successful in 9s
Lint / lint (push) Successful in 2s

This commit is contained in:
Vivian 2023-06-13 10:02:27 +02:00
parent 55a5c3bae0
commit 0c59d6c7e2
4 changed files with 14 additions and 18 deletions

View file

@ -1,13 +1,13 @@
{ pkgs, lib, ... }: {
{ pkgs, lib, pkgs_22-11,... }: {
system.stateVersion = "21.05";
networking.interfaces.eth0.useDHCP = true;
environment.systemPackages = [ pkgs.mongodb-4_2 ];
environment.systemPackages = [ pkgs_22-11.mongodb-4_2 ];
services.unifi = {
enable = true;
unifiPackage = pkgs.unifi;
mongodbPackage = pkgs.mongodb-4_2;
mongodbPackage = pkgs_22-11.mongodb-4_2;
openFirewall = true;
};