1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 14:50:40 +02:00

fix: wrong ente bucket name; document ente storage limit increase

This commit is contained in:
oddlama 2025-05-23 20:58:48 +02:00
parent f69fe83c42
commit 9ba0293c6c
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A

View file

@ -5,6 +5,9 @@
pkgs,
...
}:
# NOTE: To increase storage for all users:
# $ runuser -u ente -- psql
# ente => UPDATE subscriptions SET storage = 6597069766656;
let
enteAccountsDomain = "accounts.photos.${globals.domains.me}";
enteAlbumsDomain = "albums.photos.${globals.domains.me}";
@ -191,7 +194,7 @@ in
${lib.getExe pkgs.curl} --retry 5 --retry-connrefused --fail --no-progress-meter -o /dev/null "http://localhost:9000/minio/health/live"
# Make sure bucket exists
mkdir -p ${lib.escapeShellArg config.services.minio.dataDir}/data/ente
mkdir -p ${lib.escapeShellArg config.services.minio.dataDir}/ente
'';
};