about summary refs log tree commit diff
path: root/nixos/modules/services/databases
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-03-08 10:25:10 +0100
committerGitHub <noreply@github.com>2024-03-08 10:25:10 +0100
commit4acc19b18c2a9b1724fefbc97c9704a85bb3e3d1 (patch)
tree8c48cd8a3871723e76c6e198f27924dfa1c5b625 /nixos/modules/services/databases
parentbf7ceec3fba774f34289d2da5f4fa6d62494d526 (diff)
parenta982176a71659f51b2120681f3b8432666acd9eb (diff)
Merge pull request #291581 from Luflosi/nixos/memcached/clarify-setting
nixos/memcached: clarify behaviour of `enableUnixSocket`
Diffstat (limited to 'nixos/modules/services/databases')
-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;