nixos/desktop/dev.nix
2024-12-11 10:54:36 -08:00

10 lines
158 B
Nix
Executable file

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(python3.withPackages(ps: with ps; [ pandas requests ]))
nodejs
rpi-imager
];
}