diff options
Diffstat (limited to 'lib/emacs.nix')
-rw-r--r-- | lib/emacs.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/emacs.nix b/lib/emacs.nix new file mode 100644 index 0000000..df7b036 --- /dev/null +++ b/lib/emacs.nix @@ -0,0 +1,9 @@ +{ ... }: + +{ + programs.emacs = { + enable = true; + extraPackages = epkgs: import ./emacs-packages.nix { inherit epkgs; }; + }; +} + |