Move packages out of systemPackages and into the emacs_full package.

This commit is contained in:
Tom Alexander 2025-01-18 23:11:35 -05:00
parent 3baf18f435
commit 9976e232e6
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -49,16 +49,13 @@ in
plainmacs plainmacs
e_shorthand e_shorthand
emacs_full emacs_full
clang # To compile tree-sitter grammars
nixd # nix language server
nixfmt-rfc-style # auto-formatting nix files through nixd
]; ];
nixpkgs.overlays = [ nixpkgs.overlays = [
(final: prev: { (final: prev: {
emacs_full = pkgs.buildEnv { emacs_full = pkgs.buildEnv {
name = "emacs_full"; name = "emacs_full";
paths = with pkgs; [ paths = with prev; [
emacs29-pgtk emacs29-pgtk
(pkgs.aspellWithDicts ( (pkgs.aspellWithDicts (
dicts: with dicts; [ dicts: with dicts; [
@ -66,6 +63,9 @@ in
en-computers en-computers
] ]
)) ))
nixd # nix language server
nixfmt-rfc-style # auto-formatting nix files through nixd
clang # To compile tree-sitter grammars
]; ];
pathsToLink = [ pathsToLink = [
"/share/man" "/share/man"