Revert "Revert "Remove which -> type -P alias.""

This reverts commit ddd480ac30579d780c8ffa9c590a8c86bb36d8d2. Gave it
some more thought.

+2 -1
+1
nixos/modules/profiles/base.nix
··· 17 17 pkgs.ddrescue 18 18 pkgs.ccrypt 19 19 pkgs.cryptsetup # needed for dm-crypt volumes 20 + pkgs.which # 88K size 20 21 21 22 # Some networking tools. 22 23 pkgs.fuse
+1 -1
nixos/modules/programs/bash/bash.nix
··· 56 56 */ 57 57 58 58 shellAliases = mkOption { 59 - default = config.environment.shellAliases // { which = "type -P"; }; 59 + default = config.environment.shellAliases; 60 60 description = '' 61 61 Set of aliases for bash shell. See <option>environment.shellAliases</option> 62 62 for an option format description.