Set up Cargo and Nix project

This commit is contained in:
2026-06-16 01:46:49 +09:00
parent 4e82f47f90
commit 34855f3b7b
9 changed files with 194 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ pkgs }:
pkgs.mkShell {
packages = with pkgs; [
cargo
clippy
git
nixfmt
rustc
rustfmt
];
shellHook = ''
echo "decodal dev shell"
'';
}