config

NixOS config
Log | Files | Refs | README | LICENSE

commit 7c1e6ffb5d351e957a3306c8ed06e8a29dd5d834 (tree)
parent e5e93c3a9b438b58df45d755c31c1dfeb5aeb884
Author: Motiejus Jakštys <motiejus@jakstys.lt>
Date:   Wed, 12 Feb 2025 13:10:54 +0000

attempt to get dbt

Diffstat:
Mmodules/profiles/desktop/default.nix | 14+++++++-------
Mshared/work/default.nix | 45++++++++++++++++++++++++++++-----------------
2 files changed, 35 insertions(+), 24 deletions(-)

diff --git 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 @@ -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;