mirror of
https://github.com/blahai/nyx.git
synced 2025-04-04 19:39:31 +00:00
15 lines
320 B
Nix
15 lines
320 B
Nix
{pkgs, ...}: {
|
|
services = {
|
|
immich = {
|
|
enable = true;
|
|
host = "0.0.0.0";
|
|
port = 2283;
|
|
openFirewall = true;
|
|
package = pkgs.immich;
|
|
user = "immich";
|
|
group = "immich";
|
|
accelerationDevices = ["/dev/dri/renderD128"];
|
|
mediaLocation = "/var/lib/immich";
|
|
};
|
|
};
|
|
}
|