Merge branch 'emacs_refactor' into nix

This commit is contained in:
Tom Alexander 2025-01-19 10:16:27 -05:00
commit 2aca77ea1a
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -43,13 +43,37 @@ in
{
imports = [ ];
config = lib.mkMerge [
{
environment.systemPackages = with pkgs; [
plainmacs
e_shorthand
emacs29-pgtk
clang # To compile tree-sitter grammars
nixd # nix language server
nixfmt-rfc-style # auto-formatting nix files through nixd
emacs_full
];
nixpkgs.overlays = [
(final: prev: {
emacs_full = pkgs.symlinkJoin {
name = "emacs_full";
paths = [ pkgs.emacs29-pgtk ];
buildInputs = [ pkgs.makeWrapper ];
postBuild = ''
wrapProgram $out/bin/emacs --prefix PATH : ${
lib.makeBinPath [
(pkgs.aspellWithDicts (
dicts: with dicts; [
en
en-computers
]
))
pkgs.nixd # nix language server
pkgs.nixfmt-rfc-style # auto-formatting nix files through nixd
pkgs.clang # To compile tree-sitter grammars
]
}
'';
};
})
];
home-manager.users.talexander =
@ -78,4 +102,6 @@ in
};
environment.variables.EDITOR = "${plainmacs}/bin/plainmacs";
}
];
}