10 lines
162 B
Nix
Executable file
10 lines
162 B
Nix
Executable file
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
(python3.withPackages(ps: with ps; [ pandas requests pip ]))
|
|
nodejs
|
|
rpi-imager
|
|
];
|
|
}
|