nixos-configs/common/home/packages.nix
matt1432 261efa8768
All checks were successful
Discord / discord commits (push) Has been skipped
feat: support more fs for default x86-linux
2024-06-28 21:47:11 -04:00

39 lines
692 B
Nix

{
pkgs,
self,
...
}: {
home.packages =
(with self.packages.${pkgs.system}; [
pokemon-colorscripts
repl
])
++ (with pkgs.nodePackages; [
undollar
])
++ (with pkgs; [
# Networking
dig.dnsutils
mosh
openssh
rsync
wget
# Misc CLI stuff
killall
neofetch
nix-output-monitor
progress
tree
])
++ [
# 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
'';
})
];
}