mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
18 lines
321 B
Nix
18 lines
321 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
options.rust.enable = lib.mkEnableOption "Rust programming language.";
|
|
|
|
config = lib.mkIf config.rust.enable {
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
programs.fish.shellAbbrs = { ca = "cargo"; };
|
|
|
|
home.packages = with pkgs; [ cargo rustc clippy gcc ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|