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