From 9992c0fd4d7b6e8b36c54b12867b8f5d58411696 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Thu, 27 Mar 2025 14:22:19 +0100 Subject: [PATCH] doc/option-types: fix attrTag example Further down, `ssh = { drop = {}; };` is used. --- nixos/doc/manual/development/option-types.section.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/doc/manual/development/option-types.section.md b/nixos/doc/manual/development/option-types.section.md index f39472e2ba61..c0add330b72e 100644 --- a/nixos/doc/manual/development/option-types.section.md +++ b/nixos/doc/manual/development/option-types.section.md @@ -371,7 +371,7 @@ If the you're interested in can be distinguished without a label, you may simpli options.destination = mkOption { … }; }; }; - ignore = types.mkOption { + drop = types.mkOption { description = "Drop the packet without sending anything back."; type = types.submodule {}; };