{ pkgs, ... }: { environment.systemPackages = with pkgs; [ git highlight htop killall ncdu nixpkgs-fmt nmon tree unzip vim wget ]; environment.shellAliases = { format-modules = "nixpkgs-fmt **/*.nix"; nix-generations = "sudo nix-env --list-generations --profile /nix/var/nix/profiles/system"; rebuild = '' rm -rf ~/.config/qtile/__pycache__ && nixos-rebuild -j auto switch --use-remote-sudo ''; find-garbage = "ls -l /nix/var/nix/gcroots/auto/ | sort"; vm = "vim"; }; }