fuuko/photoprism: Init

nazuna
Simon Bruder 2023-08-18 22:17:02 +02:00
parent 30485e7d70
commit 49149fa1d4
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 13 additions and 0 deletions

View File

@ -8,6 +8,7 @@
./services/languagetool.nix
./services/media-backup.nix
./services/media.nix
./services/photoprism.nix
./services/torrent.nix
];

View File

@ -0,0 +1,12 @@
{ config, ... }:
{
services.photoprism = {
enable = true;
originalsPath = "/data/cold/photoprism";
};
sbruder.restic.system.extraExcludes = [
"/var/lib/private/photoprism"
];
}