feat(etna): add immich

This commit is contained in:
uku 2024-12-15 22:58:00 +01:00
parent c42767359f
commit bd6f6e83b8
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
2 changed files with 16 additions and 0 deletions

View file

@ -30,6 +30,7 @@ in {
./shlink.nix ./shlink.nix
./metrics.nix ./metrics.nix
./navidrome.nix ./navidrome.nix
./immich.nix
]; ];
boot = { boot = {

15
systems/etna/immich.nix Normal file
View file

@ -0,0 +1,15 @@
{...}: {
services.immich = {
enable = true;
settings = null;
mediaLocation = "/data/immich";
environment = {
TZ = "Europe/Paris";
};
host = "0.0.0.0";
openFirewall = true;
};
}