diff --git a/systems/etna/default.nix b/systems/etna/default.nix index 05f1cfa..1f0e8ff 100644 --- a/systems/etna/default.nix +++ b/systems/etna/default.nix @@ -30,6 +30,7 @@ in { ./shlink.nix ./metrics.nix ./navidrome.nix + ./immich.nix ]; boot = { diff --git a/systems/etna/immich.nix b/systems/etna/immich.nix new file mode 100644 index 0000000..e81a55e --- /dev/null +++ b/systems/etna/immich.nix @@ -0,0 +1,15 @@ +{...}: { + services.immich = { + enable = true; + + settings = null; + mediaLocation = "/data/immich"; + + environment = { + TZ = "Europe/Paris"; + }; + + host = "0.0.0.0"; + openFirewall = true; + }; +}