basic stuff + partial transpile

This commit is contained in:
2026-07-08 19:33:47 -05:00
commit 35d8fa5b32
11 changed files with 646 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{
pkgs,
...
}:
{
packages = with pkgs; [ git ];
languages.rust = {
enable = true;
lsp.enable = true;
components = [
"rustc"
"cargo"
"clippy"
"rustfmt"
"rust-analyzer"
];
};
git-hooks.hooks = {
shellcheck.enable = true;
prettier.enable = true;
rustfmt.enable = true;
nixfmt.enable = true;
clippy.enable = true;
};
# See full reference at https://devenv.sh/reference/options/
}