moved platformio packages to extra
This commit is contained in:
parent
ba7a509a33
commit
ade373301b
|
@ -21,6 +21,7 @@ in
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
./extra/dvd.nix
|
./extra/dvd.nix
|
||||||
./extra/bluray.nix
|
./extra/bluray.nix
|
||||||
|
./extra/platformio.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
@ -192,11 +193,6 @@ in
|
||||||
|
|
||||||
sass
|
sass
|
||||||
|
|
||||||
# embedded board development
|
|
||||||
platformio-core # toolchain manager for various microcontrollers
|
|
||||||
openocd # on-chip programming and debugging support
|
|
||||||
avrdude # esp32 and others support
|
|
||||||
|
|
||||||
devbox
|
devbox
|
||||||
filelight
|
filelight
|
||||||
ffmpeg-full
|
ffmpeg-full
|
||||||
|
|
|
@ -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
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue