diff options
author | Ben Sima <ben@bsima.me> | 2021-11-01 12:16:34 -0600 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-11-01 12:16:34 -0600 |
commit | 22950ff17da1d197f55f1e73783da9077c2e3cdb (patch) | |
tree | 7736a93fb99ebc3103429958ae6dd9cab7950721 /lib/emacs.nix | |
parent | e71cabacfd3af0e4426d7cfd1edbabf564b8fd4d (diff) |
extract programs.{ssh,emacs}
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; }; + }; +} + |