51 lines
559 B
Nix
51 lines
559 B
Nix
|
{pkgs, ...}: {
|
||
|
home.packages = with pkgs; [
|
||
|
nnn # terminal file manager
|
||
|
|
||
|
# archives
|
||
|
zip
|
||
|
xz
|
||
|
unzip
|
||
|
p7zip
|
||
|
|
||
|
# utils
|
||
|
zellij
|
||
|
tmux
|
||
|
bat
|
||
|
lazygit
|
||
|
bottom
|
||
|
ripgrep
|
||
|
jq
|
||
|
yq-go
|
||
|
fzf
|
||
|
fh
|
||
|
aria2
|
||
|
yt-dlp
|
||
|
obsidian
|
||
|
vscode
|
||
|
weechat
|
||
|
|
||
|
# misc
|
||
|
cowsay
|
||
|
file
|
||
|
which
|
||
|
tree
|
||
|
gnutar
|
||
|
gnupg
|
||
|
nerdfonts
|
||
|
zoxide
|
||
|
babelfish
|
||
|
|
||
|
# language-specific package managers
|
||
|
nodejs
|
||
|
cargo
|
||
|
python3
|
||
|
|
||
|
# nix specific stuff
|
||
|
nixd
|
||
|
deadnix
|
||
|
alejandra
|
||
|
statix
|
||
|
];
|
||
|
}
|