about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorTrolli Schmittlauch <t.schmittlauch+nixos@orlives.de>2023-11-28 00:49:16 +0100
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-12-04 15:04:59 +0000
commit6271842eb19166b66d5b42b4fe2856b46afa0535 (patch)
tree6a352ead702cc4ef619a98702a5526e98dec0648 /nixos/modules
parent99912f9b525a486dcd27ce0a6b646993d13e18f6 (diff)
nixos/mastodon: clarify the need to set streamingProcesses
Explicitly declaring that option is now necessary, but wasn't in the module shipped with 23.05.

(cherry picked from commit cbf69c83d3b2bdc5eca341aa9e44e0406794af81)
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/web-apps/mastodon.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/mastodon.nix b/nixos/modules/services/web-apps/mastodon.nix
index 8686506b1c282..7b00ce35eb1a7 100644
--- a/nixos/modules/services/web-apps/mastodon.nix
+++ b/nixos/modules/services/web-apps/mastodon.nix
@@ -229,7 +229,7 @@ in {
       streamingProcesses = lib.mkOption {
         description = lib.mdDoc ''
           Number of processes used by the mastodon-streaming service.
-          Recommended is the amount of your CPU cores minus one.
+          Please define this explicitly, recommended is the amount of your CPU cores minus one.
         '';
         type = lib.types.ints.positive;
         example = 3;