photoprism: add to fwminex

This commit is contained in:
2024-08-02 16:03:09 +03:00
parent fd9a4821a0
commit 14b85ab2bb
6 changed files with 73 additions and 20 deletions

View File

@@ -13,6 +13,7 @@
./matrix-synapse
./node_exporter
./nsd-acme
./photoprism
./postfix
./remote-builder
./sshguard

View File

@@ -0,0 +1,34 @@
{ config, lib, ... }:
let
cfg = config.mj.services.photoprism;
in
{
options.mj.services.photoprism = with lib.types; {
enable = lib.mkEnableOption "enable photoprism";
uidgid = lib.mkOption { type = int; };
paths = lib.mkOption { type = attrsOf str; };
passwordFile = lib.mkOption { type = str; };
};
config = lib.mkIf cfg.enable {
services.photoprism = {
enable = true;
originalsPath = "/data";
passwordFile = cfg.passwordFile;
};
systemd.services.photoprism.serviceConfig = {
ProtectHome = lib.mkForce "tmpfs";
BindPaths = lib.mapAttrsToList (name: srcpath: "${srcpath}:/data/${name}") cfg.paths;
};
users = {
groups.photoprism.gid = cfg.uidgid;
users.photoprism = {
group = "photoprism";
uid = cfg.uidgid;
};
};
};
}