nixos-config/user/lang/rust/rust.nix

9 lines
96 B
Nix
Raw Normal View History

2023-05-21 06:28:54 +05:30
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
# Rust setup
rustup
];
}