1
0
Fork 0
forked from DGNum/lab-infra
This commit is contained in:
Constantin Gierczak--Galle 2024-11-21 18:46:03 +01:00
parent a81b8de9cc
commit abf9f2d2f5
No known key found for this signature in database

View file

@ -4,7 +4,8 @@ let
port = 2342; port = 2342;
in in
{ {
services.photoprism = { services = {
photoprism = {
enable = true; enable = true;
port = port; port = port;
settings = { settings = {
@ -28,7 +29,7 @@ in
passwordFile = "/passwords/photoprism"; passwordFile = "/passwords/photoprism";
}; };
services.mysql = { mysql = {
enable = true; enable = true;
dataDir = "/data/mysql"; dataDir = "/data/mysql";
package = pkgs.mariadb; package = pkgs.mariadb;
@ -52,4 +53,5 @@ in
proxyWebsockets = true; proxyWebsockets = true;
}; };
}; };
};
} }