Files
Chickadee/modules/immich.nix
T

18 lines
289 B
Nix
Raw Normal View History

2026-07-17 22:30:24 -04:00
{ config, lib, pkgs, ... }:
{
2026-07-29 18:21:26 -04:00
services.immich = {
enable = true;
host = "127.0.0.1";
port = 2283;
mediaLocation = "/var/lib/immich";
};
2026-07-17 22:30:24 -04:00
2026-07-29 18:21:26 -04:00
services.caddy = {
enable = true;
virtualHosts."image.grasswren.net".extraConfig = ''
reverse_proxy localhost:2283
'';
};
2026-07-17 22:30:24 -04:00
}