diff --git a/hosts/hp15-n028sg/default.nix b/hosts/hp15-n028sg/default.nix index f00d507..675a136 100644 --- a/hosts/hp15-n028sg/default.nix +++ b/hosts/hp15-n028sg/default.nix @@ -19,7 +19,7 @@ ../../modules/regreet/regreet.nix ../../modules/plymouth.nix ../../modules/file_managers/spacefm.nix - + ../../modules/python.nix # Include the results of the hardware scan. ./hardware-configuration.nix ]; diff --git a/modules/python.nix b/modules/python.nix new file mode 100644 index 0000000..4d5aec9 --- /dev/null +++ b/modules/python.nix @@ -0,0 +1,13 @@ +{ pkgs, ...}: +{ + + environment.systemPackages = with pkgs; [ + (python3.withPackages (python-pkgs: with python-pkgs; [ + pandas + request + numpy + scipy + ])) + ]; + +}