36 lines
394 B
Nix
36 lines
394 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
# TODO: https://github.com/ogham/dog
|
|
atuin
|
|
bandwhich
|
|
bat
|
|
cargo-workspaces
|
|
delta
|
|
difftastic
|
|
dogdns
|
|
erdtree
|
|
exa
|
|
fd
|
|
git
|
|
gnutar
|
|
gping
|
|
htop
|
|
jless
|
|
just
|
|
kondo
|
|
mcfly
|
|
neovim
|
|
ripgrep
|
|
skim
|
|
starship
|
|
zellij
|
|
zoxide
|
|
zsh
|
|
zstd
|
|
];
|
|
}
|