This commit is contained in:
Matthew Deville 2026-02-01 18:42:22 +01:00
parent 1a338de3c0
commit b979fadb43
3 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,8 @@
{
"recommendations": [
"fill-labs.dependi",
"pinage404.nix-extension-pack",
"jnoortheen.nix-ide",
"mkhl.direnv",
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
]

View file

@ -20,7 +20,9 @@
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs { inherit system overlays; };
stdenv = pkgs.stdenvAdapters.useMoldLinker pkgs.clangStdenv;
rustToolchain = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
rustToolchain = pkgs.rust-bin.stable.latest.default.override {
extensions = [ "rust-src" ];
};
nativeBuildInputs = with pkgs; [
rustToolchain

View file

@ -1,3 +0,0 @@
[toolchain]
channel = "stable"
components = ["clippy", "rust-analyzer", "rust-src"]