dotfiles/modules/shell/utilities.nix
2022-04-28 20:46:00 -04:00

28 lines
325 B
Nix

{ config, pkgs, ... }: {
home.packages = with pkgs; [
unzip
rsync
fzf
ripgrep
bat
fd
exa
sd
zoxide
jq
tealdeer
gh
direnv
tree
htop
glow
];
home.file = {
".rgignore".text = config.ignorePatterns;
".fdignore".text = config.ignorePatterns;
};
}