snowflake/hosts/yuki/services/immich.nix
notohh d08cd8dcd8
immich: update external domain
sakura: init immich proxy

traefik: add immich proxy
2025-03-07 04:39:53 -05:00

22 lines
435 B
Nix

_: {
sops.secrets.immich = {};
services.immich = {
enable = true;
openFirewall = true;
host = "0.0.0.0";
mediaLocation = "/var/lib/immich";
secretsFile = "/run/secrets/immich";
machine-learning.enable = true;
redis = {
enable = true;
};
database = {
createDB = true;
};
settings = {
server = {
externalDomain = "https://immich.flake.sh";
};
};
};
}