Merge pull request #291581 from Luflosi/nixos/memcached/clarify-setting

nixos/memcached: clarify behaviour of `enableUnixSocket`
This commit is contained in:
Weijia Wang 2024-03-08 10:25:10 +01:00 committed by GitHub
commit 4acc19b18c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;