summaryrefslogtreecommitdiffstats
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
commita1ade02e23b78bfebb1b16452d1013d43b6db7f3 (patch)
tree94f5ba6e891b0ce4e8e0514ad75955618ff59b92
parent750533ce85aec8730491684270ebe96535fe875e (diff)
j: extract python development into seperate nix file
-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 0000000..0c32e1f
--- /dev/null
+++ b/jeschli/2configs/python.nix
@@ -0,0 +1,9 @@
+{ config, pkgs, ... }:
+
+{
+ environment.systemPackages = with pkgs; [
+ python37
+ python37Packages.pip
+ pipenv
+ ];
+}