From 1d56d0c8a79334cd7149fd580512046558eaac78 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Mon, 30 Oct 2017 17:51:30 +0000 Subject: [PATCH] types.submodule: Fix the NixOS Manual, by escaping the <> symbols. --- lib/types.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types.nix b/lib/types.nix index dd0f31e9d14..db3bd381523 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -297,7 +297,7 @@ rec { # This is mandatory as some option declaration might use the # "name" attribute given as argument of the submodule and use it # as the default of option declarations. - args.name = ""; + args.name = "<name>"; }).options; getSubModules = opts'; substSubModules = m: submodule m;