project structure + really basic README

This commit is contained in:
2026-06-26 10:43:27 -05:00
commit 96843acfe0
42 changed files with 5758 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{ ... }:
{
languages.rust = {
enable = true;
lsp.enable = true;
components = [
"rustc"
"cargo"
"clippy"
"rustfmt"
"rust-analyzer"
];
};
git-hooks.hooks = {
shellcheck.enable = true;
prettier.enable = true;
nixfmt.enable = true;
};
# See full reference at https://devenv.sh/reference/options/
}