Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-02-22 00:09:19 +00:00
parent 0235b1146f
commit 2202f2bae8
10 changed files with 37 additions and 17 deletions

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
pkgs.mkShell {
packages = with pkgs; [
cargo
rustc
rustfmt
];
}