Immich: Difference between revisions

From NixOS Wiki
Onny (talk | contribs)
Adapt config example to new pull request
V3ntus (talk | contribs)
m Added source PR of this service, which is not in unstable or 24.11
 
(One intermediate revision by one other user not shown)
Line 3: Line 3:
== Setup ==
== Setup ==


{{Note|The module is not yet part of the latest NixOS stable release and will be available with version 24.11.}}
{{Note|The module is not yet part of the latest NixOS stable release and is currently in a PR at https://github.com/NixOS/nixpkgs/pull/324127}}


The following example configuration will enable Immich locally
The following example configuration will enable Immich locally


{{file|/etc/nixos/configuration.nix|nix|3=services.immich.enable = true;
{{file|/etc/nixos/configuration.nix|nix|3=services.immich = {
  enable = true;
  environment.IMMICH_MACHINE_LEARNING_URL = "http://localhost:3003";
};
}}After applying the configuration you can access the instance via http://localhost:3001.
}}After applying the configuration you can access the instance via http://localhost:3001.
[[Category:Server]]
[[Category:Server]]
[[Category:Web Applications]]
[[Category:Web Applications]]

Latest revision as of 13:59, 8 August 2024

Immich is an open-source software, designed to provide a self-hosted alternative for managing and backing up photos and videos, with a focus on privacy and ease of use.

Setup

Note: The module is not yet part of the latest NixOS stable release and is currently in a PR at https://github.com/NixOS/nixpkgs/pull/324127

The following example configuration will enable Immich locally

/etc/nixos/configuration.nix
services.immich = {
  enable = true;
  environment.IMMICH_MACHINE_LEARNING_URL = "http://localhost:3003";
};

After applying the configuration you can access the instance via http://localhost:3001.