nixcfg/homeManagerModules/apps/emacs/default.nix

35 lines
594 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
config,
lib,
pkgs,
2024-04-07 22:16:33 -04:00
...
}: {
config = lib.mkIf config.ar.home.apps.emacs.enable {
2024-03-28 19:52:15 -04:00
programs.emacs = {
enable = true;
extraConfig = builtins.readFile ./emacs.el;
2024-04-07 22:16:33 -04:00
extraPackages = epkgs: (with epkgs; [
better-defaults
markdown-mode
nix-mode
org
org-bullets
org-journal
org-roam
ox-pandoc
projectile
python
treemacs
treemacs-projectile
treemacs-tab-bar
use-package
yaml
yaml-mode
]);
2024-03-28 19:52:15 -04:00
package = pkgs.emacs-nox;
};
};
}