Add minicom

This commit is contained in:
Nathan McCarty 2023-08-25 14:51:23 -04:00
parent f61da776e6
commit 81addfc96d
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:3elIBybO7zXuCg+/os7OlO2fwfRPXmObQjcHXBf7Hfg
2 changed files with 12 additions and 2 deletions

View File

@ -337,7 +337,12 @@
};
devShells = {
pico = pkgs.mkShell {
buildInputs = with pkgs; [ pico-sdk picotool gcc-arm-embedded ];
buildInputs = with pkgs; [
pico-sdk
picotool
gcc-arm-embedded
minicom
];
};
};
});

View File

@ -117,7 +117,12 @@ with nLib; {
})
# RPi Pico Development
(mkIf devel.pico {
home.packages = with unstable; [ pico-sdk picotool gcc-arm-embedded ];
home.packages = with unstable; [
pico-sdk
picotool
gcc-arm-embedded
minicom
];
})
];
}