nixos-configs/machine/backyard/immich.nix

17 lines
308 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
services.immich = {
enable = true;
host = "10.22.20.8";
port = 2283;
openFirewall = true;
machine-learning.enable = false;
mediaLocation = "/pool/immich";
settings = {
machineLearning.enabled = false;
newVersionCheck.enabled = false;
};
};
}