wip
This commit is contained in:
parent
1a338de3c0
commit
b979fadb43
3 changed files with 5 additions and 5 deletions
3
.vscode/extensions.json
vendored
3
.vscode/extensions.json
vendored
|
|
@ -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",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
[toolchain]
|
||||
channel = "stable"
|
||||
components = ["clippy", "rust-analyzer", "rust-src"]
|
||||
Loading…
Reference in a new issue