summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/databases
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-06-25 22:42:16 +0200
committerGitHub <noreply@github.com>2024-06-25 22:42:16 +0200
commit33f83c62521656d3709e77629a8aae3175ef1dab (patch)
tree4d76374ef368a23122fa3bce6364f185f59f16cb /nixos/modules/services/databases
parent3176d6fb53681394e18f57451240ee2eb05386b2 (diff)
parent7d8742da87c1b06cd6db5eba1fe5a2cf8a7b2568 (diff)
Merge pull request #316977 from eclairevoyant/fix-mkEnableOption
treewide: fix mkEnableOption usage
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 e38931b6b7ea..7a3afc5efafc 100644
--- a/nixos/modules/services/databases/memcached.nix
+++ b/nixos/modules/services/databases/memcached.nix
@@ -37,7 +37,7 @@ in
description = "The port to bind to.";
};
- enableUnixSocket = mkEnableOption "Unix Domain Socket at /run/memcached/memcached.sock instead of listening on an IP address and port. The `listen` and `port` options are ignored.";
+ enableUnixSocket = mkEnableOption "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;