init
This commit is contained in:
commit
a953246971
17 changed files with 795 additions and 0 deletions
21
modules/emacs.nix
Normal file
21
modules/emacs.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ 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;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue