diff options
author | Jeschli <jeschli@gmail.com> | 2019-09-30 08:10:02 +0200 |
---|---|---|
committer | Jeschli <jeschli@gmail.com> | 2019-09-30 08:14:22 +0200 |
commit | 5a5f899d715f864c5e97911cbd7e2dc839e79601 (patch) | |
tree | 5ccde213ce66bd077c215b4a240fd33d9ea7ca1a /jeschli/2configs/python.nix | |
parent | 0886027a4afd9594251b7082524cbf13f9a62e89 (diff) |
j: extract python development into seperate nix file
Diffstat (limited to 'jeschli/2configs/python.nix')
-rw-r--r-- | jeschli/2configs/python.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/jeschli/2configs/python.nix b/jeschli/2configs/python.nix new file mode 100644 index 000000000..0c32e1fc8 --- /dev/null +++ b/jeschli/2configs/python.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + python37 + python37Packages.pip + pipenv + ]; +} |