dev first commit

This commit is contained in:
Julian Sutter 2023-03-20 21:56:24 -07:00
parent 54e654d1cc
commit a20ddd638f
2 changed files with 16 additions and 0 deletions

15
modules/dev.nix Normal file
View file

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
let
my-python-packages = p: with p; [
pandas
requests
# other python packages
];
in
environment.systemPackages = [
(pkgs.python3.withPackages my-python-packages)
nodejs
];
}