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