Initial commit

This commit is contained in:
2026-07-13 19:24:45 +00:00
commit b57d590420
9 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/
}