dotfiles/modules/shell/utilities.nix

28 lines
325 B
Nix
Raw Normal View History

2022-04-28 23:20:46 +00:00
{ config, pkgs, ... }: {
home.packages = with pkgs; [
unzip
rsync
fzf
ripgrep
bat
fd
exa
sd
zoxide
jq
tealdeer
gh
direnv
tree
htop
glow
];
2022-04-29 00:46:00 +00:00
home.file = {
".rgignore".text = config.ignorePatterns;
".fdignore".text = config.ignorePatterns;
};
2022-04-28 23:20:46 +00:00
}