nix-config/modules/emacs.nix

22 lines
402 B
Nix
Raw Normal View History

2022-05-25 19:27:42 +02:00
{ lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# language servers
clang-tools
clang
sqlite
graphviz
];
services.emacs = {
install = true;
enable = false;
# pure gtk, native compiled emacs with vterm and pdf-tools
package = with pkgs; ((emacsPackagesFor emacs).emacsWithPackages (epkgs: [ epkgs.vterm ]));
defaultEditor = false;
};
}