nixos-configs/common/home/packages.nix
matt1432 a51db7b00f
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: move dracula from common overlays to pkgs
2024-06-08 23:40:44 -04:00

40 lines
704 B
Nix

{
pkgs,
self,
...
}: {
home.packages =
(with self.packages.${pkgs.system}; [
pokemon-colorscripts
repl
])
++ (with pkgs.nodePackages; [
undollar
])
++ (with pkgs; [
dig.dnsutils
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
'';
})
];
}