1
Files
dotfiles/hosts/default/home/python.nix
2024-12-07 17:33:23 +05:30

14 lines
219 B
Nix

{ config, pkgs, ... }: {
home.packages = [
(pkgs.python311.withPackages (ps: with ps; [
jupyter
python-lsp-server
python-lsp-ruff
pandas
requests
xlrd
xlwt
]))
];
}