nix/modules/services/immich/default.nix

18 lines
437 B
Nix
Raw Normal View History

2024-11-08 18:23:40 +01:00
{domain, ...}: {
2024-10-24 14:23:30 +02:00
services.nginx = {
2024-11-08 18:23:40 +01:00
virtualHosts."immich.${domain}" = {
2024-10-24 14:23:30 +02:00
forceSSL = true;
enableACME = true;
extraConfig = ''
client_max_body_size 512M;
'';
locations."/".proxyPass = "http://localhost:2283";
};
};
services.immich = {
enable = true;
environment.IMMICH_MACHINE_LEARNING_URL = "http://localhost:3003";
};
users.users.immich.extraGroups = ["video" "render"];
}