Files
ErrorNoWatcher/devenv.nix
2026-04-13 16:59:53 -04:00

20 lines
170 B
Nix

{
pkgs,
...
}:
{
packages = with pkgs; [
git
jujutsu
luajit
openssl
];
languages.rust = {
enable = true;
channel = "nightly";
};
}