mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
23 lines
211 B
Nix
23 lines
211 B
Nix
|
{ config, pkgs, ... }: {
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
unzip
|
||
|
rsync
|
||
|
fzf
|
||
|
ripgrep
|
||
|
bat
|
||
|
fd
|
||
|
exa
|
||
|
sd
|
||
|
zoxide
|
||
|
jq
|
||
|
tealdeer
|
||
|
gh
|
||
|
direnv
|
||
|
tree
|
||
|
htop
|
||
|
glow
|
||
|
];
|
||
|
|
||
|
}
|