Compare commits

...

2 Commits

Author SHA1 Message Date
Nathan McCarty 81addfc96d
Add minicom 2023-08-25 14:51:23 -04:00
Nathan McCarty f61da776e6
Add gcc embedded to pico devel 2023-08-25 14:44:39 -04:00
2 changed files with 18 additions and 1 deletions

View File

@ -335,5 +335,15 @@
'';
};
};
devShells = {
pico = pkgs.mkShell {
buildInputs = with pkgs; [
pico-sdk
picotool
gcc-arm-embedded
minicom
];
};
};
});
}

View File

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