nixos-configs/common/home/packages.nix

31 lines
409 B
Nix
Raw Normal View History

{
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
2024-02-12 16:16:33 -05:00
unzip
dig.dnsutils
]);
}