diff --git a/modules/profiles/desktop/default.nix b/modules/profiles/desktop/default.nix index 6c10a7b..7d567b5 100644 --- a/modules/profiles/desktop/default.nix +++ b/modules/profiles/desktop/default.nix @@ -255,13 +255,13 @@ in xorg.lndir xorg.xinit - (python3.withPackages ( - ps: with ps; [ - numpy - ipython - matplotlib - ] - )) + #(python3.withPackages ( + # ps: with ps; [ + # numpy + # ipython + # matplotlib + # ] + #)) (texlive.combine { inherit (texlive) diff --git a/shared/work/default.nix b/shared/work/default.nix index bc469d5..b1da11d 100644 --- a/shared/work/default.nix +++ b/shared/work/default.nix @@ -2,23 +2,34 @@ { mj.base.users.email = null; - environment.systemPackages = with pkgs; [ - #swc - #nodejs - #typescript - #concurrently - bats - unzip - rclone - mysql80 - kubectl - kubectx - terraform - docker-compose - google-cloud-sdk - kubectl-node-shell - (dbt.withAdapters (adapters: [ adapters.dbt-bigquery ])) - ]; + environment.systemPackages = + with pkgs; + [ + #swc + #nodejs + #typescript + #concurrently + bats + unzip + rclone + mysql80 + kubectl + kubectx + terraform + docker-compose + google-cloud-sdk + kubectl-node-shell + ] + ++ [ + (pkgs.pkgs-unstable.python3.withPackages ( + ps: with ps; [ + ipython # works + minimal-snowplow-tracker + dbt.withAdapters # doesn't + (adapters: [ adapters.dbt-bigquery ]) + ] + )) + ]; programs._1password.enable = true;