about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLuflosi <luflosi@luflosi.de>2024-02-26 15:28:27 +0100
committerLuflosi <luflosi@luflosi.de>2024-02-26 15:29:55 +0100
commita982176a71659f51b2120681f3b8432666acd9eb (patch)
tree70cd1e48203f88afd1641114c7d77fa483ef2d75
parentea6cede4f1b18b606953a86961ee7a9004217c19 (diff)
nixos/memcached: clarify behaviour of `enableUnixSocket`
Let's make it clear that enabling this option will disable listening on an IP address and port.
-rw-r--r--nixos/modules/services/databases/memcached.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/databases/memcached.nix b/nixos/modules/services/databases/memcached.nix
index 542c80ab2e67f..fd943c20091ab 100644
--- a/nixos/modules/services/databases/memcached.nix
+++ b/nixos/modules/services/databases/memcached.nix
@@ -37,7 +37,7 @@ in
         description = lib.mdDoc "The port to bind to.";
       };
 
-      enableUnixSocket = mkEnableOption (lib.mdDoc "unix socket at /run/memcached/memcached.sock");
+      enableUnixSocket = mkEnableOption (lib.mdDoc "Unix Domain Socket at /run/memcached/memcached.sock instead of listening on an IP address and port. The `listen` and `port` options are ignored.");
 
       maxMemory = mkOption {
         type = types.ints.unsigned;