Home

dotnix @d7b09a802298f6dbda5f89e124b93cc11ec0cc68 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / nogui / rust.nix
- raw -
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
{ pkgs, ... }:
{
  home.packages = with pkgs; [
    rustc
    cargo
    rustfmt
    clippy
    rust-analyzer
    gcc
  ];
}