From 2704133fe3ca616b22ed6685cc67180456eb4160 Mon Sep 17 00:00:00 2001 From: refaelsh Date: Fri, 30 Aug 2024 00:57:13 +0300 Subject: [PATCH] contributing: document `plugins/default.nix` Mention that new plugins need to be imported via the `default.nix` file. --- CONTRIBUTING.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 837fa6842d..6d439a9084 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -75,6 +75,9 @@ In either case, you don't need to bother implementing this part. It is done auto > `settings` has a "freeform" type `attrsOf anything`, meaning it can be configured with _anything_. > Declaring `settingsOptions` is therefore optional and just adds type-checking and documentation. +#### Add to plugins/default.nix +As a final step, please add your plugin to `plugins/default.nix`. Please maintain the file hierarchy. + ### Tests