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

@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ pkgs, lib, ... }:
{ pkgs, pkgs_22-11, lib, ... }:
{
imports = [ ];
@ -22,7 +22,7 @@
services.unifi = {
enable = true;
unifiPackage = pkgs.unifi;
mongodbPackage = pkgs.mongodb-4_2;
mongodbPackage = pkgs_22-11.mongodb-4_2;
openFirewall = true;
};
}