summaryrefslogtreecommitdiff
path: root/nixos/hosts/bin/components/immich.nix
blob: 82fd0d305e539387e81bb9e9a538ed8a71417b30 (plain)
1
2
3
4
5
6
7
8
9
10
{
  networking.firewall.allowedTCPPorts = [ 2283 ];

  services.immich = {
    enable = true;
    host = "10.0.0.1";
    port = 2283;
    mediaLocation = "/var/lib/immich";
  };
}