diff --git a/modules/dev.nix b/modules/dev.nix index 26502fa..e7c9e78 100644 --- a/modules/dev.nix +++ b/modules/dev.nix @@ -1,8 +1,9 @@ { config, pkgs, ... }: { - environment.systemPackages = with pkgs; [ - python3 + +environment.systemPackages = with pkgs; [ + (python3.withPackages(ps: with ps; [ pandas requests])) nodejs ]; }