From c35b6569fb86bb0cb5ef4639a3d40d273c281533 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Fri, 13 May 2022 12:37:26 -0700 Subject: [PATCH] Install Emacs through Nix --- nix/home.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/home.nix b/nix/home.nix index 36ee8ce..5ec3f6e 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -36,6 +36,8 @@ in # Let Home Manager install and manage itself. programs.home-manager.enable = true; + # Enable integration with generic Linux OSs + targets.genericLinux.enable = true; home.packages = with pkgs; [ xonsh_with_plugins @@ -48,6 +50,7 @@ in tmux kitty nodePackages.pyright + emacs28NativeComp ]; programs.direnv.enable = true;