summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-11-12 20:28:22 -0500
committerGitHub <noreply@github.com>2023-11-12 20:28:22 -0500
commit6c986b681d6b35affcc4eda42db63595ab01860e (patch)
treea43b5044eb7edaf1a6f3bad25a027dd22945dab6
parenta1606cb4ac1697c26d8aae84a48ab23a47738783 (diff)
parentf192930a799b7912fb486bd6b258844c3f97b24a (diff)
Merge pull request #267110 from dadada/soft-typos
nixos/soft-serve: fix typos in option descriptions
-rw-r--r--nixos/modules/services/misc/soft-serve.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/misc/soft-serve.nix b/nixos/modules/services/misc/soft-serve.nix
index 0f246493880b..2b63b6bcd867 100644
--- a/nixos/modules/services/misc/soft-serve.nix
+++ b/nixos/modules/services/misc/soft-serve.nix
@@ -12,7 +12,7 @@ in
{
options = {
services.soft-serve = {
- enable = mkEnableOption "Enable soft-serve service";
+ enable = mkEnableOption "soft-serve";
package = mkPackageOption pkgs "soft-serve" { };
@@ -20,7 +20,7 @@ in
type = format.type;
default = { };
description = mdDoc ''
- The contents of the configuration file.
+ The contents of the configuration file for soft-serve.
See <${docUrl}>.
'';