Reproducible dotfiles in nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

added better python pieces

+7 -6
+7 -6
lib/shared/python.nix
··· 1 1 {pkgs, ...}: { 2 - home.packages = [ 2 + home.packages = with pkgs; [ 3 3 # Python 4 - pkgs.micromamba 5 - pkgs.cookiecutter 6 - pkgs.ruff 7 - pkgs.pyright 8 - pkgs.rye 4 + micromamba 5 + cookiecutter 6 + ruff 7 + pyright 8 + rye 9 + pre-commit 9 10 ]; 10 11 }