Init project

This commit is contained in:
2025-08-05 13:30:23 +08:00
commit 74dfe4dc6b
11 changed files with 398 additions and 0 deletions

22
devenv.nix Normal file
View File

@@ -0,0 +1,22 @@
{
pkgs,
lib,
config,
inputs,
...
}:
{
packages = with pkgs; [
git
bun
cargo-generate
];
# https://devenv.sh/languages/
languages.rust = {
enable = true;
channel = "stable";
};
}