feat: init esp32 project

This commit is contained in:
Jet Pham 2025-10-01 12:41:49 -07:00
parent 3f542d8db0
commit a69b064f39
No known key found for this signature in database
15 changed files with 1804 additions and 10 deletions

33
flake.nix Normal file
View file

@ -0,0 +1,33 @@
{
description = "A devShell example";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
rust-overlay.url = "github:oxalica/rust-overlay";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, rust-overlay, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs {
inherit system overlays;
};
in
{
devShells.default = with pkgs; mkShell {
buildInputs = [
(rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
targets = [ "riscv32imac-unknown-none-elf" ];
extensions = [ "rust-src" "rustfmt" "clippy" "rust-analyzer" ];
}))
espflash
esp-generate
probe-rs
];
};
}
);
}