fix channels.*.input defaultText formatting
This commit is contained in:
parent
aa825b87a6
commit
bb9bc02478
|
@ -40,7 +40,7 @@ nix flake
|
||||||
|
|
||||||
*_Default_*
|
*_Default_*
|
||||||
```
|
```
|
||||||
"inputs.\\<name\\>"
|
"inputs.<name>"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue