Use Doom Emacs unstraightened

Have to disable java lsp because of build issue:
https://github.com/marienz/nix-doom-emacs-unstraightened/issues/96

Need to test it more.
This commit is contained in:
2025-10-17 13:24:24 -04:00
parent fc3e982361
commit d23aff0cbe
6 changed files with 407 additions and 6 deletions

View File

@@ -6,19 +6,24 @@
}:
{
imports = [
inputs.nix-doom-emacs-unstraightened.homeModule
(
{ ... }:
{
nixpkgs.overlays = [
inputs.nix-doom-emacs-unstraightened.overlays.default
inputs.emacs-overlay.overlays.default
];
}
)
];
programs.emacs = {
programs.emacs.package = pkgs.emacs-unstable-pgtk;
programs.doom-emacs = {
enable = true;
package = pkgs.emacs-unstable-pgtk;
doomDir = ./doom.d;
extraPackages = epkgs: [
epkgs.dracula-theme
@@ -27,6 +32,6 @@
# for file search
pkgs.fd
];
extraConfig = "";
};
}