From 21a651a18e77d1939adbdae73505c13c3c6e0d53 Mon Sep 17 00:00:00 2001 From: Emile Date: Sat, 28 Sep 2024 23:58:44 +0200 Subject: immich --- nix/hosts/corrino/www/photo/immich.nix | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 nix/hosts/corrino/www/photo/immich.nix (limited to 'nix/hosts/corrino/www/photo/immich.nix') 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"; + }; + }; + }; +} -- cgit 1.4.1