commit f81b3044f0dacb8937669da1f6f482ec4d59a4e7 parent e71d8bd6bcca4ff3578368d3bf65304c47fab37f Author: Silas Brack <silasbrack@gmail.com> Date: Thu, 30 Apr 2026 21:46:13 +0200 feat(gaia): emacs in home manager Diffstat:
| M | hosts/gaia/configuration.nix | | | 36 | ++++++++++++++++++------------------ |
| M | hosts/gaia/home.nix | | | 18 | ++++++++++++++++++ |
2 files changed, 36 insertions(+), 18 deletions(-)
diff --git a/hosts/gaia/configuration.nix b/hosts/gaia/configuration.nix @@ -196,24 +196,24 @@ pkgs.ghc pkgs.jack2 pkgs.opencode - (emacs.pkgs.withPackages (ep: [ - ep.magit - ep.eat - ep.inheritenv - ep.emms - ep.expand-region - ep.hyperbole - ep.projectile - ep.tidal - ep.htmlize - ep.ox-pandoc - ep.notmuch - (ep.treesit-grammars.with-grammars (g: [ - g.tree-sitter-python - g.tree-sitter-rust - g.tree-sitter-nix - ])) - ])) + # (emacs.pkgs.withPackages (ep: [ + # ep.magit + # ep.eat + # ep.inheritenv + # ep.emms + # ep.expand-region + # ep.hyperbole + # ep.projectile + # ep.tidal + # ep.htmlize + # ep.ox-pandoc + # ep.notmuch + # (ep.treesit-grammars.with-grammars (g: [ + # g.tree-sitter-python + # g.tree-sitter-rust + # g.tree-sitter-nix + # ])) + # ])) # entr fd feh diff --git a/hosts/gaia/home.nix b/hosts/gaia/home.nix @@ -33,6 +33,24 @@ programs.emacs = { enable = true; extraConfig = builtins.readFile ./init.el; + extraPackages = ep: [ + ep.magit + ep.eat + ep.inheritenv + ep.emms + ep.expand-region + ep.hyperbole + ep.projectile + ep.tidal + ep.htmlize + ep.ox-pandoc + ep.notmuch + (ep.treesit-grammars.with-grammars (g: [ + g.tree-sitter-python + g.tree-sitter-rust + g.tree-sitter-nix + ])) + ]; }; programs.bash.enable = true;