{ pkgs, ... }: { programs.jq.enable = true; home.shellAliases = { ".." = "cd .."; "..." = "cd ../.."; rm = "trash-put"; diff = "diff --color"; killall = "pkill"; grep = "rg"; find = "fd"; backgrounditems = "bgiparser -f \"\$HOME/Library/Application Support/com.apple.backgroundtaskmanagementagent/backgrounditems.btm\" -c"; zzz = ( if pkgs.stdenv.isLinux then "sleep 1 && systemctl suspend" else "pmset sleepnow" ); }; home.packages = with pkgs; [ coreutils trash-cli wget curl rsync ripgrep fd fx file bc unzip smartmontools gptfdisk e2fsprogs dosfstools ] ++ (if pkgs.stdenv.isLinux then [ usbutils pciutils lm_sensors ] else []); }