moved platformio packages to extra

This commit is contained in:
Sven Vogel 2023-11-17 18:25:30 +01:00
parent ba7a509a33
commit ade373301b
2 changed files with 9 additions and 5 deletions

View File

@ -21,6 +21,7 @@ in
./fonts.nix
./extra/dvd.nix
./extra/bluray.nix
./extra/platformio.nix
];
hardware.bluetooth.enable = true;
@ -192,11 +193,6 @@ in
sass
# embedded board development
platformio-core # toolchain manager for various microcontrollers
openocd # on-chip programming and debugging support
avrdude # esp32 and others support
devbox
filelight
ffmpeg-full

8
extra/platformio.nix Normal file
View File

@ -0,0 +1,8 @@
{ 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
];
}