99 lines
4.2 KiB
Nix
99 lines
4.2 KiB
Nix
{ config, containerCfg, pkgs, lib, builder, name,... }:
|
|
let
|
|
version = "v2";
|
|
serverCfg = config.syscfg.server;
|
|
|
|
in {
|
|
sops = true;
|
|
db = true;
|
|
|
|
paths = [{
|
|
path = "${serverCfg.configPath}/immich/cache";
|
|
mode = "0750";
|
|
}{
|
|
path = "${serverCfg.dataPath}/immich/";
|
|
mode = "0755";
|
|
}];
|
|
|
|
containers = {
|
|
server = builder.mkContainer {
|
|
subdomain = containerCfg.subdomain;
|
|
image = "ghcr.io/immich-app/immich-server:${version}";
|
|
port = 2283;
|
|
secret = name;
|
|
extraEnv = {
|
|
DB_HOSTNAME = builder.host;
|
|
REDIS_HOSTNAME = builder.host;
|
|
DB_USERNAME = "immich_user";
|
|
DB_DATABASE_NAME = "immich_db";
|
|
IMMICH_TRUSTED_PROXIES = "10.0.0.0/8";
|
|
# IMMICH_ALLOW_SETUP = "false";
|
|
IMMICH_MACHINE_LEARNING_URL = "http://immich-ml:3003";
|
|
IMMICH_IGNORE_MOUNT_CHECK_ERRORS = "true";
|
|
};
|
|
overrides = {
|
|
volumes = [
|
|
"${serverCfg.dataPath}/immich:/data"
|
|
];
|
|
};
|
|
};
|
|
|
|
ml = builder.mkContainer {
|
|
image = "ghcr.io/immich-app/immich-machine-learning:${version}";
|
|
port = 3003;
|
|
overrides = {
|
|
volumes = [
|
|
"${serverCfg.configPath}/immich/cache:/cache"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
|
|
setup = {
|
|
trigger = "server";
|
|
envFile = config.sops.secrets."CUSTOM".path;
|
|
script = pkgs.writeShellScript "setup" ''
|
|
PSQL="${pkgs.postgresql}/bin/psql -U postgres"
|
|
$PSQL -d "immich_db" -tAc "CREATE EXTENSION IF NOT EXISTS vchord CASCADE;"
|
|
$PSQL -d "immich_db" -tAc "CREATE EXTENSION IF NOT EXISTS earthdistance CASCADE;"
|
|
|
|
mkdir -p ${serverCfg.dataPath}/immich/{upload,library,thumbs,encoded-video,profile,backups}
|
|
|
|
IMMICH_URL="https://${containerCfg.subdomain}.${serverCfg.domain}"
|
|
until [[ "$(${pkgs.curl}/bin/curl -s -o /dev/null -w "%{http_code}" "$IMMICH_URL")" =~ (200|301|302) ]]; do
|
|
sleep 5
|
|
done
|
|
${pkgs.curl}/bin/curl -X POST "$IMMICH_URL/api/auth/admin-sign-up" \
|
|
-H "Content-Type: application/json" -H "Accept: application/json" \
|
|
-d '{ "email": "'"$DEFAULT_ADMIN_EMAIL"'", "password": "'"$DEFAULT_ADMIN_PASSWORD"'", "name": "'"$DEFAULT_ADMIN_USERNAME"'" }'
|
|
|
|
|
|
IMMICH_TOKEN=$(${pkgs.curl}/bin/curl -sSf -X POST "$IMMICH_URL/api/auth/login" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{ "email": "'"$DEFAULT_ADMIN_EMAIL"'", "password": "'"$DEFAULT_ADMIN_PASSWORD"'"}' \
|
|
| ${pkgs.jq}/bin/jq -r '.accessToken')
|
|
|
|
${lib.optionalString (serverCfg.containers ? authentik) ''
|
|
${pkgs.curl}/bin/curl -s -X GET "$IMMICH_URL/api/system-config" -H "Cookie: immich_access_token=$IMMICH_TOKEN; immich_auth_type=password; immich_is_authenticated=true" | \
|
|
${pkgs.jq}/bin/jq '.oauth.enabled = true |
|
|
.oauth.autoRegister = true |
|
|
.oauth.autoLaunch = true |
|
|
.oauth.signingAlgorithm = "RS256" |
|
|
.oauth.profileSigningAlgorithm = "RS256" |
|
|
.oauth.clientId = "'"$IMMICH_OAUTH_ID"'" |
|
|
.oauth.clientSecret = "'"$IMMICH_OAUTH_SECRET"'" |
|
|
.oauth.issuerUrl = "https://${serverCfg.containers.authentik.subdomain}.${serverCfg.domain}" |
|
|
.oauth.scope = "openid profile email" |
|
|
.oauth.buttonText = "Login with SSO"' | \
|
|
${pkgs.curl}/bin/curl -s -X PUT "$IMMICH_URL/api/system-config" -H "Cookie: immich_access_token=$IMMICH_TOKEN; immich_auth_type=password; immich_is_authenticated=true" -H "Content-Type: application/json" -d @-
|
|
''}
|
|
|
|
${pkgs.curl}/bin/curl -s -X GET "$IMMICH_URL/api/system-config" -H "Cookie: immich_access_token=$IMMICH_TOKEN; immich_auth_type=password; immich_is_authenticated=true" | \
|
|
${pkgs.jq}/bin/jq '.storageTemplate.enable = true |
|
|
.storageTemplate.template = "{{y}}/{{#if album}}{{album}}{{else}}{{MM}}{{/if}}/{{filename}}"' | \
|
|
${pkgs.curl}/bin/curl -s -X PUT "$IMMICH_URL/api/system-config" -H "Cookie: immich_access_token=$IMMICH_TOKEN; immich_auth_type=password; immich_is_authenticated=true" -H "Content-Type: application/json" -d @-
|
|
''}
|
|
|
|
'';
|
|
};
|
|
} |