refactor custom emacs packages

This commit is contained in:
Tobias Ostner 2026-03-29 14:52:17 +02:00
parent ed7eb9fb62
commit 79105e12f7
4 changed files with 44 additions and 34 deletions

View file

@ -0,0 +1,10 @@
{ pkgs }:
final: prev: {
shell-maker = import ./shell-maker.nix {
inherit pkgs prev;
};
agent-shell = import ./agent-shell.nix {
inherit pkgs final;
};
}