nix-config-v2/home/core.nix

57 lines
624 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-09-03 21:24:20 -05:00
bat
lazygit
bottom
ripgrep
jq
yq-go
fzf
fh
aria2
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-09-03 21:24:20 -05:00
statix
2024-09-02 12:34:59 -05:00
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
];
}