nixfleet/pkgs/default.nix
aciceri 54a41ac797
Working on Emacs
- now my custom Emacs package lives inside `pkgs/`
- small org-mode updates
- added custom Emacs commands to rebuild NixOS
2021-10-06 10:50:19 +02:00

6 lines
215 B
Nix

final: prev: {
# keep sources this first
sources = prev.callPackage (import ./_sources/generated.nix) {};
customEmacs = prev.callPackage (import ./emacs) {};
# then, call packages with `final.callPackage`
}