fix channels.*.input defaultText formatting

This commit is contained in:
Pacman99 2021-04-27 12:52:16 -07:00
parent aa825b87a6
commit bb9bc02478
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ nix flake
*_Default_* *_Default_*
``` ```
"inputs.\\<name\\>" "inputs.<name>"
``` ```

View file

@ -52,7 +52,7 @@ let
input = mkOption { input = mkOption {
type = flakeType; type = flakeType;
default = cfg.inputs.${name}; default = cfg.inputs.${name};
defaultText = escape [ "<" ">" ] "inputs.<name>"; defaultText = "inputs.<name>";
description = '' description = ''
nixpkgs flake input to use for this channel nixpkgs flake input to use for this channel
''; '';