nixos-configs/common/home/packages.nix
matt1432 6be9d173b6
All checks were successful
Discord / discord commits (push) Has been skipped
fix: don't add local cache to builder
2024-05-29 21:18:50 -04:00

41 lines
715 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
])
++ [
# This could help as well: nix derivation show -r /run/current-system
(pkgs.writeShellApplication {
name = "listDerivs";
text = ''
nix-store --query --requisites /run/current-system | cut -d- -f2- | sort -u
'';
})
];
}