blob: 89b4f60ec1744d1689829a20eed72073328d4d1f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Derivation for my fully configured Eagle Mode.
{ depot, ... }:
let
config = depot.tools.eaglemode.etcDir {
extraPaths = [
depot.tools.eaglemode.commands.B
depot.tools.eaglemode.plugins.qoi
];
};
in
depot.tools.eaglemode.withConfig { inherit config; }
|