tvl-depot/users/tazjin/eaglemode/default.nix
Vincent Ambo 0a38618675 feat(tazjin/eaglemode): install new eaglemode plugins
Change-Id: Ic5044ada0a3e07f3982cabb8e16c5dd9b2a38472
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12447
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
2024-09-07 12:17:48 +00:00

16 lines
271 B
Nix

# Derivation for my fully configured Eagle Mode.
{ depot, ... }:
with depot.tools.eaglemode;
withConfig {
config = etcDir {
extraPaths = [
commands.emacsclient
plugins.example
plugins.yatracker
plugins.qoi
plugins.avif
];
};
}