Home

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