- 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)
9 lines
133 B
Nix
9 lines
133 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = [
|
|
pkgs.poetry
|
|
|
|
(pkgs.python3.withPackages (import ../modules/python-packages.nix))
|
|
];
|
|
}
|