1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-05-05 20:16:03 +02:00

task: allow rust analyzer to work with vscode

This commit is contained in:
Stephen Stubbs 2024-01-09 22:25:26 +00:00
parent 0ea67a261e
commit d65a867727

View File

@ -23,7 +23,9 @@
else if builtins.pathExists ./rust-toolchain then
rust.fromRustupToolchainFile ./rust-toolchain
else
rust.stable.latest.default;
rust.stable.latest.default.override {
extensions = [ "rust-src" "rustfmt" ];
};
})
];
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];