doom: fix things

This commit is contained in:
2025-11-07 02:23:48 -05:00
parent 1ccafaf534
commit 711aa3e3e0
2 changed files with 14 additions and 8 deletions

View File

@@ -23,13 +23,19 @@
enable = true;
doomDir = ./doom.d;
emacs = pkgs.emacs-unstable-pgtk;
extraPackages = epkgs: [
epkgs.dracula-theme
extraPackages =
epkgs:
[
epkgs.dracula-theme
]
++ (with pkgs; [
shellcheck
shfmt
pkgs.shellcheck
# for file search
fd
# for file search
pkgs.fd
];
pandoc
]);
};
}