2024-08-29 09:31:54 +02:00
|
|
|
# Derivation for my fully configured Eagle Mode.
|
|
|
|
{ depot, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
config = depot.tools.eaglemode.etcDir {
|
2024-09-03 01:28:31 +02:00
|
|
|
extraPaths = [
|
|
|
|
depot.tools.eaglemode.commands.B
|
2024-09-03 12:54:42 +02:00
|
|
|
depot.tools.eaglemode.plugins.avif
|
2024-09-03 01:28:31 +02:00
|
|
|
depot.tools.eaglemode.plugins.qoi
|
|
|
|
];
|
2024-08-29 09:31:54 +02:00
|
|
|
};
|
|
|
|
in
|
2024-09-03 01:28:31 +02:00
|
|
|
depot.tools.eaglemode.withConfig { inherit config; }
|