Files
nix-dotfiles-v2/home/python.nix
Adrian G L 8173b617e7 refactor: unify python packages across jupyter, devel and home configs
- Create modules/python-packages.nix as single source of truth for 51 packages
- Update develPackages.nix to use shared package list with jupyter included
- Update jupyterhub.nix kernel to use shared package list
- Update home/python.nix to use shared package list
- Disable kicad/easyeda2kicad (transient GitLab download corruption)
2026-03-23 14:41:09 +01:00

9 lines
133 B
Nix

{ pkgs, ... }:
{
home.packages = [
pkgs.poetry
(pkgs.python3.withPackages (import ../modules/python-packages.nix))
];
}