nix-config-v2/home/core.nix

56 lines
976 B
Nix
Raw Normal View History

2024-09-02 12:34:59 -05:00
{pkgs, ...}: {
2024-07-29 23:09:42 -05:00
home.packages = with pkgs; [
nnn # terminal file manager
# archives
zip
xz
unzip
p7zip
# utils
2024-07-31 12:52:55 -05:00
bat # a batter cat
lazygit # a git tui that's easy to use
bottom # a better top
2024-07-29 23:09:42 -05:00
ripgrep # recursively searches directories for a regex pattern
jq # A lightweight and flexible command-line JSON processor
yq-go # yaml processer https://github.com/mikefarah/yq
fzf # A command-line fuzzy finder
fh # flake hub command line interface
aria2 # A lightweight multi-protocol & multi-source command-line download utility
2024-08-15 21:38:53 -05:00
yt-dlp
2024-07-29 23:09:42 -05:00
# misc
cowsay
file
which
tree
gnutar
gnupg
tmux
nerdfonts
zoxide
babelfish
# language-specific package managers
nodejs
cargo
python3
2024-09-02 12:34:59 -05:00
# nix specific stuff
nixd
deadnix
alejandra
2024-07-29 23:09:42 -05:00
# productivity
iterm2
discord
obsidian
vscode
2024-08-15 21:38:53 -05:00
ollama
2024-07-29 23:09:42 -05:00
# games?
# prismlauncher
];
}