diff options
Diffstat (limited to 'nix/hosts/corrino/www/photo/immich.nix')
-rw-r--r-- | nix/hosts/corrino/www/photo/immich.nix | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/nix/hosts/corrino/www/photo/immich.nix b/nix/hosts/corrino/www/photo/immich.nix new file mode 100644 index 0000000..83dadf4 --- /dev/null +++ b/nix/hosts/corrino/www/photo/immich.nix @@ -0,0 +1,29 @@ +{ config, ... }: + +{ + services.nginx.virtualHosts."photo.emile.space" = { + forceSSL = true; + enableACME = true; + locations = { + "/" = { + proxyPass = "http://${config.services.immich.host}:${toString config.services.immich.port}"; + }; + }; + }; + + services.immich = { + enable = true; + mediaLocation = "/var/lib/immich"; + secretsFile = config.age.secrets.immich_secrets_file.path; + + host = "127.0.0.1"; + port = config.emile.ports.immich; + + machine-learning = { + enable = true; + environment = { + MACHINE_LEARNING_MODEL_TTL = "600"; + }; + }; + }; +} |