mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
15 lines
381 B
Nix
15 lines
381 B
Nix
{ config, pkgs, ... }: {
|
|
programs.doom-emacs = {
|
|
enable = true;
|
|
emacs = pkgs.emacs-pgtk;
|
|
doomDir = ./doom.d;
|
|
doomLocalDir = "${config.home.homeDirectory}/.local/share/nix-doom";
|
|
extraPackages = epkgs: with epkgs; [
|
|
catppuccin-theme
|
|
treesit-grammars.with-all-grammars
|
|
rainbow-delimiters
|
|
pkgs.ispell
|
|
pkgs.clojure-lsp
|
|
];
|
|
};
|
|
}
|