flake: Install LLVM in devShell too

Lets the developer use `cargo build` instead of `nix build` to obtain
the final firmware build.
This commit is contained in:
atse 2024-01-30 16:05:09 +08:00
parent 1ae6a6fdd4
commit b037e8e4ca

View File

@ -61,7 +61,8 @@
devShells.x86_64-linux.default = pkgs.mkShellNoCC {
name = "thermostat-dev-shell";
packages = with pkgs; [
rust openocd dfu-util
rust llvm
openocd dfu-util
] ++ (with python3Packages; [
numpy matplotlib
]);