summaryrefslogtreecommitdiffstats
path: root/jeschli/2configs
diff options
context:
space:
mode:
authorJeschli <jeschli@gmail.com>2019-09-30 08:10:02 +0200
committerJeschli <jeschli@gmail.com>2019-09-30 08:14:22 +0200
commit5a5f899d715f864c5e97911cbd7e2dc839e79601 (patch)
tree5ccde213ce66bd077c215b4a240fd33d9ea7ca1a /jeschli/2configs
parent0886027a4afd9594251b7082524cbf13f9a62e89 (diff)
j: extract python development into seperate nix file
Diffstat (limited to 'jeschli/2configs')
-rw-r--r--jeschli/2configs/python.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/jeschli/2configs/python.nix b/jeschli/2configs/python.nix
new file mode 100644
index 00000000..0c32e1fc
--- /dev/null
+++ b/jeschli/2configs/python.nix
@@ -0,0 +1,9 @@
+{ config, pkgs, ... }:
+
+{
+ environment.systemPackages = with pkgs; [
+ python37
+ python37Packages.pip
+ pipenv
+ ];
+}