Install Emacs through Nix

This commit is contained in:
2022-05-13 12:37:26 -07:00
parent ac1dbf979c
commit c35b6569fb

View File

@@ -36,6 +36,8 @@ in
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager.enable = true; programs.home-manager.enable = true;
# Enable integration with generic Linux OSs
targets.genericLinux.enable = true;
home.packages = with pkgs; [ home.packages = with pkgs; [
xonsh_with_plugins xonsh_with_plugins
@@ -48,6 +50,7 @@ in
tmux tmux
kitty kitty
nodePackages.pyright nodePackages.pyright
emacs28NativeComp
]; ];
programs.direnv.enable = true; programs.direnv.enable = true;