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