combustcean/devenv.nix

26 lines
556 B
Nix
Raw Permalink Normal View History

2026-05-25 17:50:39 -07:00
{
pkgs,
lib,
config,
inputs,
...
}: {
processes."tongs:watch" = {
cwd = "./combustcean-tongs";
watch = {
paths = [./combustcean-tongs/src];
extensions = ["rs" "toml"];
};
exec = ''
cargo build --target thumbv7em-none-eabihf --release && \
run-fap ../target/thumbv7em-none-eabihf/release/combustcean-tongs.fap -p /dev/ttyACM0
'';
};
packages = with pkgs; [
# keep-sorted start
jujutsu
# keep-sorted end
];
}