dotfiles/modules/emacs.nix

24 lines
344 B
Nix
Raw Normal View History

2023-07-26 13:04:43 -04:00
{ pkgs, ... }:
2022-08-27 10:57:48 -04:00
{
home.packages = with pkgs; [
# Doom requirements
fd
ripgrep
wakatime
];
2023-09-01 10:24:50 -04:00
home.file.".config/doom" = {
2022-08-27 10:57:48 -04:00
source = ../config/.doom.d;
recursive = true;
};
programs = {
emacs = {
enable = true;
2023-12-22 16:36:26 -05:00
package = pkgs.emacs-nox;
2022-08-27 10:57:48 -04:00
extraPackages = epkgs: [ epkgs.vterm ];
};
};
}