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

@ -66,10 +66,6 @@
ip = "192.168.0.111";
mac = "7a:5f:9b:62:49:91";
};
"minio" = {
ip = "192.168.0.112";
mac = "ae:c6:94:bb:c5:d9";
};
"cshub2" = {
ip = "192.168.0.113";
mac = "26:8c:f6:f4:21:76";

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;
};