installed nodejs packages

This commit is contained in:
2023-04-30 16:10:50 -06:00
parent 1fbd820bf2
commit ba349d8660
2 changed files with 427 additions and 416 deletions

View File

@@ -276,6 +276,7 @@ home-manager.users.jawz = { config, pkgs, ... }:{
# Art
blender # cgi animation and sculpting
godot # game development
# gdtoolkit # gdscript language server
krita # art to your heart desire!
drawpile # arty party with friends!!
mypaint # not the best art program
@@ -431,7 +432,6 @@ adwaita-qt
]) ++ (with pkgs.python310Packages; [
black # Python code formatter
flake8 # wraper for pyflakes, pycodestyle and mccabe
gdtoolkit # gdscript parser
isort # sort Python imports
nose # testing and running python scripts
pipx # install python packages in a virtual environment
@@ -440,6 +440,16 @@ adwaita-qt
pylint # bug and style checker for python
pytest # framework for writing tests
speedtest-cli # check internet speed from the comand line
#+end_src
** NPM
#+begin_src nix
]) ++ (with pkgs.nodePackages; [
dockerfile-language-server-nodejs
markdownlint-cli
prettier
pnpm
]);
#+end_src
@@ -670,8 +680,8 @@ environment.sessionVariables = rec {
PATH = [
"\${XDG_BIN_HOME}"
"\${XDG_CONFIG_HOME}/emacs/bin"
# "\${XDG_DATA_HOME}/npm/bin"
# "\${PNPM_HOME}"
"\${XDG_DATA_HOME}/npm/bin"
"\${PNPM_HOME}"
# "\${SCRIPTS}"
];
};