feat(tazjin/eaglemode): add example plugin to config

Change-Id: I5993c429dfa066295823d5666763ca0120cc209c
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12391
Reviewed-by: tazjin <tazjin@tvl.su>
Reviewed-by: emery <emery@dmz.rs>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2024-08-29 10:12:20 +03:00 committed by tazjin
parent 84bdc582ea
commit a115238f1b

View file

@ -1,11 +1,13 @@
# Derivation for my fully configured Eagle Mode.
{ depot, ... }:
let
config = depot.tools.eaglemode.etcDir {
extraPaths = [ depot.tools.eaglemode.commands.emacsclient ];
with depot.tools.eaglemode;
withConfig {
config = etcDir {
extraPaths = [
commands.emacsclient
plugins.example
];
};
in
depot.tools.eaglemode.withConfig {
inherit config;
}