nixos-configs/common/home/packages.nix
matt1432 938e0064b6
All checks were successful
Discord / discord commits (push) Has been skipped
feat(nvim): add some packages
2024-02-12 16:16:33 -05:00

31 lines
409 B
Nix

{
config,
pkgs,
...
}: {
home.packages =
(with config.customPkgs; [
pokemon-colorscripts
repl
])
++ (with pkgs.nodePackages; [
undollar
])
++ (with pkgs; [
dracula-theme
neofetch
progress
wget
tree
openssh
mosh
rsync
killall
imagemagick
usbutils
zip
unzip
dig.dnsutils
]);
}