nixos/memcached: clarify behaviour of enableUnixSocket

Let's make it clear that enabling this option will disable listening on an IP address and port.
This commit is contained in:
Luflosi 2024-02-26 15:28:27 +01:00
parent ea6cede4f1
commit a982176a71
No known key found for this signature in database
GPG Key ID: 743C5DD6900A1FF0

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;