feat: add devenv

This commit is contained in:
2026-04-10 22:44:14 -04:00
parent 2cf4265732
commit 40c5950b26
5 changed files with 126 additions and 0 deletions

19
devenv.nix Normal file
View File

@@ -0,0 +1,19 @@
{
pkgs,
...
}:
{
packages = with pkgs; [
git
jujutsu
luajit
openssl
];
languages.rust = {
enable = true;
channel = "nightly";
};
}