installed python packages

This commit is contained in:
2023-04-30 15:56:32 -06:00
parent 92a2b959d7
commit 1fbd820bf2
2 changed files with 440 additions and 400 deletions

View File

@@ -264,10 +264,13 @@ necessary.
home-manager.users.jawz = { config, pkgs, ... }:{
# imports = [ ./dotfiles/dconf.nix ];
home.stateVersion = "22.11";
home.packages = with pkgs; [
home.packages = (with pkgs; [
#+end_src
*** GUI PACKAGES
*** GUI PACKAGES :ATTACH:
:PROPERTIES:
:ID: d5a59b97-4c99-4813-9583-4bdbc978dbad
:END:
#+begin_src nix
# Art
@@ -340,6 +343,7 @@ neofetch # use once for brag, never again
rmlint # probably my favourite app, amazing dupe finder that integrates well with BTRFS
tldr # man for retards
ffmpegthumbnailer # create video thumbnails for nautilus, in absence of totem
vcsi # video thumbnails for torrents, can I replace it with ^?
mediainfo # technical info about videos, needed by some of my scripts
tree-sitter # code parsing, required by Doom emacs
xdg-ninja # help declutter $HOME
@@ -371,7 +375,7 @@ nixfmt # linting
# PYTHON.
python3 # base language
python310Packages.pipx
pipenv # python development workflow for humans
# C# & Rust
omnisharp-roslyn
@@ -419,7 +423,24 @@ adwaita-qt
# (papirus-icon-theme.override {
# color = "grey";
# })
];
#+end_src
** PYTHON
#+begin_src nix
]) ++ (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
poetry # dependency management made easy
pyflakes # checks source code for errors
pylint # bug and style checker for python
pytest # framework for writing tests
speedtest-cli # check internet speed from the comand line
]);
#+end_src
** DOTFILES