1
0
Fork 0
nixos-config/home-manager/modules/rustdev.nix
2018-05-31 14:45:23 +02:00

20 lines
287 B
Nix

{ lib, pkgs, config, ...}:
with lib;
{
options.m-0.rustdev.enable = mkEnableOption "Rust Dev";
config = mkIf config.m-0.rustdev.enable {
home.packages = with pkgs; [
# gnome3.glade
rustracer
cargo
rustc
gcc
binutils-unwrapped
rustfmt
carnix
];
};
}