j: extract python development into seperate nix file

This commit is contained in:
Jeschli 2019-09-30 08:10:02 +02:00
parent 0886027a4a
commit 5a5f899d71

View File

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
python37
python37Packages.pip
pipenv
];
}