From 3e8666bce952916df704e390989641705b193ab1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 8 Aug 2024 14:23:27 +0200 Subject: [PATCH] nixos/redis: remove outdated info in enable option Thanks for the heads up @poperigby ! --- nixos/modules/services/databases/redis.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/nixos/modules/services/databases/redis.nix b/nixos/modules/services/databases/redis.nix index ad88a4f589a2..7a3f408aa98e 100644 --- a/nixos/modules/services/databases/redis.nix +++ b/nixos/modules/services/databases/redis.nix @@ -64,14 +64,7 @@ in { servers = mkOption { type = with types; attrsOf (submodule ({ config, name, ... }: { options = { - enable = mkEnableOption '' - Redis server. - - Note that the NixOS module for Redis disables kernel support - for Transparent Huge Pages (THP), - because this features causes major performance problems for Redis, - e.g. (https://redis.io/topics/latency) - ''; + enable = mkEnableOption "Redis server"; user = mkOption { type = types.str;