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