develop: Add Rust

This commit is contained in:
Sweetbread 2024-12-14 15:18:56 +03:00
parent 3fc9f416f9
commit e909e76c9e

View File

@ -123,5 +123,14 @@
];
};
};
devShells."${system}".default = let
pkgs = import nixpkgs { inherit system; };
in pkgs.mkShell {
packages = with pkgs; [
cargo
rustc
];
};
};
}