dotfiles/modules/shell/utilities.nix

45 lines
521 B
Nix
Raw Normal View History

{ pkgs, user, ... }:
2022-04-29 01:23:43 +00:00
let
ignorePatterns = ''
!.env*
!.github/
!.gitignore
!*.tfvars
.terraform/
.target/
/Library/'';
2022-04-29 01:23:43 +00:00
in {
2022-04-28 23:20:46 +00:00
home-manager.users.${user}.home = {
packages = with pkgs; [
unzip
rsync
fzf
ripgrep
bat
fd
exa
sd
zoxide
jq
tealdeer
gh
direnv
tree
htop
glow
];
file = {
".rgignore".text = ignorePatterns;
".fdignore".text = ignorePatterns;
};
2022-04-29 00:46:00 +00:00
};
2022-04-28 23:20:46 +00:00
}