diff --git a/nixos/doc/manual/redirects.json b/nixos/doc/manual/redirects.json index feb535c2142c..5b1a52588c16 100644 --- a/nixos/doc/manual/redirects.json +++ b/nixos/doc/manual/redirects.json @@ -1544,6 +1544,21 @@ "module-services-emacs-man-pages": [ "index.html#module-services-emacs-man-pages" ], + "module-services-ente": [ + "index.html#module-services-ente" + ], + "module-services-ente-quickstart": [ + "index.html#module-services-ente-quickstart" + ], + "module-services-ente-registering-users": [ + "index.html#module-services-ente-registering-users" + ], + "module-services-ente-increasing-storage-limit": [ + "index.html#module-services-ente-increasing-storage-limit" + ], + "module-services-ente-ios-background-sync": [ + "index.html#module-services-ente-ios-background-sync" + ], "module-services-livebook": [ "index.html#module-services-livebook" ], diff --git a/nixos/modules/services/web-apps/ente.md b/nixos/modules/services/web-apps/ente.md index cb623db653cd..a904461870a9 100644 --- a/nixos/modules/services/web-apps/ente.md +++ b/nixos/modules/services/web-apps/ente.md @@ -115,7 +115,7 @@ available. While adding new plans is possible in theory, it requires some manual database operations which isn't worthwhile. Instead, use `ente-cli` with your admin user to modify the storage limit. -## iOS background sync +## iOS background sync {#module-services-ente-ios-background-sync} On iOS, background sync is achived via a silent notification sent by the server every 30 minutes that allows the phone to sync for about 30 seconds, enough for diff --git a/nixos/modules/services/web-apps/ente.nix b/nixos/modules/services/web-apps/ente.nix index a432996d405b..0eda31d834a6 100644 --- a/nixos/modules/services/web-apps/ente.nix +++ b/nixos/modules/services/web-apps/ente.nix @@ -359,5 +359,8 @@ in }) ]; - meta.maintainers = with lib.maintainers; [ oddlama ]; + meta = { + doc = ./ente.md; + maintainers = with lib.maintainers; [ oddlama ]; + }; }