nixos-configs/common/home/packages.nix
matt1432 4884cad9a1
All checks were successful
Discord / discord commits (push) Has been skipped
fix: use ssh to have cursor changes on nvim
2023-12-26 04:00:25 -05:00

30 lines
397 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
dig.dnsutils
]);
}