9 lines
145 B
Nix
Executable file
9 lines
145 B
Nix
Executable file
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
(python3.withPackages(ps: with ps; [ pandas requests ]))
|
|
nodejs
|
|
];
|
|
}
|