Home

dotnix @2e9cc8868825eaff92e711de7b7e63b230275b9c - 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
  ];
}