1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-04-28 09:35:18 +02:00

Merge pull request #35 from crc-sstubbs/task/rust-analyzer-vscode

task: allow rust analyzer to work with vscode
This commit is contained in:
Luc Perkins 2024-01-18 13:15:05 -03:00 committed by GitHub
commit 57a613b3d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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" ];