diff --git a/NixOS/modules/nvim/config.nix b/NixOS/modules/nvim/config.nix index b3981ef..e1677ff 100644 --- a/NixOS/modules/nvim/config.nix +++ b/NixOS/modules/nvim/config.nix @@ -2,6 +2,17 @@ { home.packages = with pkgs; [ + clang + go + nodejs + luarocks + jre + python3 + python311Packages.pip + julia + unzip + dotnet-sdk_8 + cargo ]; home.file."${config.xdg.configHome}/nvim" = { @@ -15,7 +26,4 @@ vimAlias = true; defaultEditor = true; }; - home.sessionVariables = { - LD_LIBRARY_PATH = "${pkgs.stdenv.cc.cc.lib}/lib"; - }; }