about summary refs log tree commit diff
path: root/users/tazjin/eaglemode/default.nix
blob: 9f59695a40b8135ee8d3838942cb3a19f68c97e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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
    ];
  };
}