better rust

This commit is contained in:
2026-04-21 19:54:01 +02:00
parent b672103607
commit c2e7983697
4 changed files with 44 additions and 4 deletions
+1
View File
@@ -10,6 +10,7 @@
numpy
pandas
requests
aiohttp
beautifulsoup4
ipython
+16 -3
View File
@@ -1,8 +1,21 @@
{ pkgs, ... }:
{ pkgs, inputs, ... }:
let
rustToolchain = pkgs.rust-bin.stable.latest.default.override {
extensions = [
"rust-src"
"rustfmt"
];
};
in
{
nixpkgs.overlays = [ inputs.rust-overlay.overlays.default ];
environment.systemPackages = with pkgs; [
rustToolchain
clang
lld
pkg-config
openssl
rust-analyzer
rustfmt
rustup
];
}