Migrate emacs-depended packages to emacs module

This commit is contained in:
2022-09-04 10:53:24 -07:00
parent 68370421b8
commit 7d0d2a4197
2 changed files with 6 additions and 2 deletions

View File

@@ -24,8 +24,6 @@
ripgrep
tmux
kitty
nodePackages.pyright
coreutils
zstd
fira-code
];

View File

@@ -3,4 +3,10 @@
programs.emacs.enable = true;
programs.emacs.package = pkgs.emacs28NativeComp;
programs.emacs.extraPackages = epkgs: [ epkgs.vterm ];
home.packages = with pkgs; [
# Needed on macOS because Emacs wants the GNU version of some utilities like ls
coreutils
nodePackages.pyright
];
}