CONTRIBUTING: fix indenting

This commit is contained in:
Gaetan Lepage 2023-08-07 10:28:55 +02:00 committed by Gaétan Lepage
parent fbcfa4ca4c
commit 4b8ecce30e

View file

@ -37,6 +37,7 @@ To add a new plugin you need to do the following.
pkgs,
...
} @ args:
let
helpers = import ../helpers.nix args;
in {
@ -52,7 +53,11 @@ To add a new plugin you need to do the following.
```nix
{
config = let cfg = config.plugins."<plug-name>"; in lib.mkIf cfg.enable {
config =
let
cfg = config.plugins."<plug-name>";
in lib.mkIf cfg.enable {
extraPlugins = [cfg.package];
extraConfigLua = ''