nixos-configs/common/home/packages.nix
Updater 2fd1f95b79
All checks were successful
Discord / discord commits (push) Has been skipped
feat: add nix-output-monitor to default packages
2024-05-27 08:20:23 -04:00

32 lines
434 B
Nix

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