level/shell.nix
2025-12-02 22:00:06 +01:00

12 lines
160 B
Nix

with import <nixpkgs> {} ;
mkShell {
buildInputs = [
rshell
esptool
(python3.withPackages (p: with p;[
pyserial
black
]))
];
}