29 lines
397 B
Nix
29 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
|
|
]);
|
|
}
|