nix-git/modules/rust.nix

41 lines
1.1 KiB
Nix

# We use the unofficial overlay oxalica/rust-overlay
# https://nixos.wiki/wiki/Rust#Unofficial_overlays
# Example for oxalica/rust-overlay
# https://nixos.wiki/wiki/Rust#Custom_Rust_version
# rust-analyzer
# https://rust-analyzer.github.io/
# rust-analyzer is an implementation of Language Server Protocol for the Rust programming language. It provides features like completion and goto definition for many code editors, including VS Code, Emacs and Vim.
{ config, pkgs, ... }:
let
#rustVersion = pkgs.rust-bin.stable."1.81.0".default.override {
rustVersion = pkgs.rust-bin.stable.latest.default.override {
extensions = [
"rust-src"
"rust-analyzer"
];
#targets = [
# "x86_64-unknown-linux-musl"
# #"arm-unknown-linux-gnueabihf"
# #"wasm32-wasi"
# #"wasm32-unknown-unknown"
#];
};
# This is depreciated.
#rustPlatform = pkgs.makeRustPlatform {
# cargo = rustVersion;
# rustc = rustVersion;
#};
in
{
environment.systemPackages = with pkgs; [
# This is depreciated.
#rustPlatform.rust.cargo
rustVersion
];
}