No description
  • Rust 98.8%
  • Python 0.9%
  • Nix 0.3%
Find a file
Carl Bordum Hansen 8e2d6d8daf Merge branch 'make-clippy-happy-without-renaming' into 'main'
Make clippy happy without renaming

See merge request pyjam.as/twiceaday!9
2024-01-18 20:44:04 +00:00
.cargo fix flake 2023-12-29 17:26:30 +01:00
src Merge branch 'make-clippy-happy-without-renaming' into 'main' 2024-01-18 20:44:04 +00:00
tools fix font 2024-01-13 02:31:08 +01:00
.gitignore fix flake 2023-12-29 17:26:30 +01:00
build.rs humantime 🫂 2023-12-29 22:53:05 +01:00
Cargo.lock analog watchface 2024-01-07 14:08:38 +01:00
Cargo.toml analog watchface 2024-01-07 14:08:38 +01:00
Embed.toml fix flake 2023-12-29 17:26:30 +01:00
flake.lock fix flake 2023-12-29 17:26:30 +01:00
flake.nix allow uppercase variable names in enum variants 2024-01-17 22:01:42 +01:00
LICENSE Add LICENSE 2023-12-27 16:47:49 +00:00
README.md Stop running cargo as sudo like some maniac 2024-01-06 18:47:29 +01:00
rust-toolchain.toml fix flake 2023-12-29 17:26:30 +01:00

nix develop
flash

Setup udev rules, add this to your configuration.nix:

services.udev.packages = [
  (pkgs.writeTextFile {
    name = "probe-rs udev rules";
    text = ''ATTRS{idVendor}=="0483", ATTRS{idProduct}=="3748", MODE="660", GROUP="users", TAG+="uaccess"'';
    destination = "/etc/udev/rules.d/69-probe-rs.rules";
  })
];