about summary refs log tree commit diff
path: root/users/emery/eaglemode/default.nix
blob: 471e8eda67f7ab17e29706296415f5c6b2f7b888 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Derivation for my fully configured Eagle Mode.
{ depot, ... }:

let
  config = depot.tools.eaglemode.etcDir {
    extraPaths = [
      depot.tools.eaglemode.commands.B
      depot.tools.eaglemode.plugins.avif
      depot.tools.eaglemode.plugins.qoi
    ];
  };
in
depot.tools.eaglemode.withConfig { inherit config; }