dotfiles/modules/emacs.nix

24 lines
346 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-07-24 16:50:21 -04:00
package = pkgs.emacs29-nox;
2022-08-27 10:57:48 -04:00
extraPackages = epkgs: [ epkgs.vterm ];
};
};
}