minor changes

This commit is contained in:
marble 2025-12-02 22:00:01 +01:00
commit 35817c2219
5 changed files with 226 additions and 0 deletions

12
shell.nix Normal file
View file

@ -0,0 +1,12 @@
with import <nixpkgs> {} ;
mkShell {
buildInputs = [
rshell
esptool
(python3.withPackages (p: with p;[
pyserial
black
]))
];
}