nix/modules/services/immich/default.nix

18 lines
423 B
Nix
Raw Normal View History

2024-10-24 14:23:30 +02:00
{
services.nginx = {
virtualHosts."immich.joygnu.org" = {
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"];
}