14 lines
219 B
Nix
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
|
|
]))
|
|
];
|
|
}
|