Skip to content
Snippets Groups Projects
dev-rust.nix 89 B
{ pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    rustc
    cargo
  ];
}