This commit is contained in:
alsaiduq-lab 2025-06-30 21:21:44 -06:00
parent de4b14a35d
commit 37346c49e0
23 changed files with 12 additions and 39 deletions

16
hosts/modules/rust.nix Normal file
View file

@ -0,0 +1,16 @@
{pkgs, ...}: let
rustToolchain = pkgs.symlinkJoin {
name = "rust-toolchain";
paths = with pkgs; [rustc cargo rustfmt clippy];
};
in {
environment.systemPackages = with pkgs; [
rustToolchain
rust-analyzer
cargo-edit
cargo-watch
cargo-outdated
cargo-audit
minijinja-cli
];
}