NixOS/extra/platformio.nix

9 lines
305 B
Nix
Raw Normal View History

2023-11-17 17:25:30 +00:00
{ pkgs, config, ... }: {
# embedded board development
environment.systemPackages = with pkgs; [
platformio-core # toolchain manager for various microcontrollers
openocd # on-chip programming and debugging support
avrdude # esp32 and others support
];
}