nixrice/.config/nixos/profiles/emacs.nix
2023-12-05 21:59:51 -05:00

21 lines
328 B
Nix

{ config, lib, pkgs, modulesPath, ... }:
{
services.emacs.enable = true;
environment.systemPackages = with pkgs; [
emacs29-gtk3
# Misc
ispell # Spellchecker
fd # Find entries in filesystem. Helps doom emacs run faster.
# For vterm
cmake
libtool
## LSPs
nodePackages.pyright
];
}