19 lines
No EOL
410 B
Nix
19 lines
No EOL
410 B
Nix
{ ... }: {
|
|
users.users.immich.extraGroups = [ "video" "render" ];
|
|
|
|
services = {
|
|
immich = {
|
|
enable = true;
|
|
port = 2283;
|
|
host = "127.0.0.1";
|
|
mediaLocation = "/mnt/data/immich";
|
|
accelerationDevices = null;
|
|
machine-learning.enable = true;
|
|
};
|
|
immich-public-proxy = {
|
|
enable = true;
|
|
port = 2284;
|
|
immichUrl = "http://localhost:2283";
|
|
};
|
|
};
|
|
} |