nixcfg/homeManagerModules/apps/emacs/default.nix

34 lines
620 B
Nix

{
pkgs,
lib,
config,
...
}: {
config = lib.mkIf config.alyraffauf.apps.emacs.enable {
programs.emacs = {
enable = true;
extraPackages = epkgs: (with epkgs; [
better-defaults
catppuccin-theme
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
]);
package = pkgs.emacs-nox;
extraConfig = builtins.readFile ./emacs.el;
};
};
}