Files
nix-config-v2/home/packages/common.nix

43 lines
431 B
Nix
Raw Normal View History

2024-12-18 20:09:28 -05:00
{
2025-10-31 17:07:59 -04:00
lib,
2024-12-18 20:09:28 -05:00
pkgs,
...
}: {
2025-10-31 17:07:59 -04:00
imports = [
../atuin.nix
../shell.nix
../git.nix
../starship.nix
../eza.nix
../neovim.nix
../bat.nix
];
2024-10-31 22:56:43 -04:00
home.packages = with pkgs; [
# archives
zip
xz
unzip
p7zip
# utils
2025-10-30 17:34:55 -04:00
yazi
2024-10-31 22:56:43 -04:00
tmux
bottom
ripgrep
jq
yq-go
fzf
aria2
2025-10-30 17:34:55 -04:00
gnupg
inetutils
2024-10-31 22:56:43 -04:00
# misc
file
which
tree
gnutar
babelfish
];
}