18 lines
289 B
Nix
18 lines
289 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.immich = {
|
|
enable = true;
|
|
host = "127.0.0.1";
|
|
port = 2283;
|
|
mediaLocation = "/var/lib/immich";
|
|
};
|
|
|
|
services.caddy = {
|
|
enable = true;
|
|
virtualHosts."image.grasswren.net".extraConfig = ''
|
|
reverse_proxy localhost:2283
|
|
'';
|
|
};
|
|
}
|