56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [
|
|
"${inputs.nixpkgs-unstable}/nixos/modules/services/web-apps/immich.nix"
|
|
];
|
|
|
|
age.secrets.immich = {
|
|
rekeyFile = ./secrets.age;
|
|
owner = "immich";
|
|
group = "immich";
|
|
};
|
|
|
|
services.immich = {
|
|
enable = true;
|
|
package = pkgs.unstable.immich;
|
|
port = 5489;
|
|
host = "0.0.0.0";
|
|
openFirewall = true;
|
|
mediaLocation = "/srv/services/immich/library";
|
|
secretsFile = config.age.secrets.immich.path;
|
|
database = {
|
|
enable = true;
|
|
user = "immich";
|
|
name = "immich";
|
|
};
|
|
environment = {
|
|
TZ = "Australia/Perth";
|
|
DB_USERNAME = "immich";
|
|
DB_DATABASE_NAME = "immich";
|
|
};
|
|
};
|
|
|
|
services.traefik.dynamicConfigOptions.http.routers = {
|
|
immich = {
|
|
rule = "Host(`photos.kanto.dev`)";
|
|
entryPoints = [
|
|
"websecure"
|
|
];
|
|
middlewares = [
|
|
"internal"
|
|
];
|
|
service = "immich";
|
|
};
|
|
};
|
|
|
|
services.traefik.dynamicConfigOptions.http.services = {
|
|
immich.loadBalancer.servers = [
|
|
{url = "http://127.0.0.1:${toString config.services.immich.port}";}
|
|
];
|
|
};
|
|
}
|