mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-06 15:08:41 +00:00
11 lines
268 B
Nix
11 lines
268 B
Nix
{pkgs, ...}: {
|
|
programs.zsh.sessionVariables = {
|
|
RUSTFLAGS = "-L ${pkgs.libiconv}/lib -L ${pkgs.libcxx}/lib";
|
|
RUST_BACKTRACE = "full";
|
|
};
|
|
home.file.".cargo/config.toml".source = ./rust/cargo-config.toml;
|
|
home.packages = [
|
|
pkgs.rust-analyzer
|
|
];
|
|
}
|