Immich: Difference between revisions
→Using borg for backups: use "config.services.immich.mediaLocation" instead of hardcoding the path |
|||
| (3 intermediate revisions by the same user not shown) | |||
| Line 5: | Line 5: | ||
{{file|/etc/nixos/configuration.nix|nix|3=services.immich.enable = true; | {{file|/etc/nixos/configuration.nix|nix|3=services.immich.enable = true; | ||
services.immich.port = 2283;}} | services.immich.port = 2283;}} | ||
To access Immich from other devices via network, add the following as well: | |||
{{file|/etc/nixos/configuration.nix|nix|3=services.immich.host = "0.0.0.0"; | |||
services.immich.openFirewall = true;}} | |||
More options are available: {{nixos:option|services.immich.}} | More options are available: {{nixos:option|services.immich.}} | ||
== Tips and Tricks == | == Tips and Tricks == | ||
=== Custom Media Location === | |||
While the official Immich documentation recommends modifying <code>UPLOAD_LOCATION</code> environmental variable for Docker build, NixOS does not support modifying it. Instead, {{nixos:option|services.immich.mediaLocation}} may be used, which simply sets [https://docs.immich.app/install/environment-variables/ <code>IMMICH_MEDIA_LOCATION</code>] variable, while this is not recommended in the official documentation: | |||
{{file|/etc/nixos/configuration.nix|nix|3=services.immich.mediaLocation = "/var/lib/immich"; | |||
}} | |||
{{warning|If you have used Immich before, changing this option will completely stop Immich service, disabling access from browser. You may need to reset / remove Postgresql database.}} | |||
{{info|If you only need to change the location where raw data is stored, [https://docs.immich.app/guides/external-library/ External Libraries] may be used.}} | |||
=== Enabling Hardware Accelerated Video Transcoding === | === Enabling Hardware Accelerated Video Transcoding === | ||