dev first commit
This commit is contained in:
parent
54e654d1cc
commit
a20ddd638f
2 changed files with 16 additions and 0 deletions
15
modules/dev.nix
Normal file
15
modules/dev.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue