aliases: clean up some aliases

Ensure aliases have their packages installed for man pages.
Move `procs` alias from core to develop profile.
This commit is contained in:
Timothy DeHerrera 2019-12-17 18:10:18 -07:00
parent 6368b95dcd
commit 792e7b7c05
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122
2 changed files with 7 additions and 6 deletions

View file

@ -43,7 +43,6 @@ in
fd fd
git git
gptfdisk gptfdisk
procs
iputils iputils
manpages manpages
moreutils moreutils
@ -80,9 +79,6 @@ in
ns = "n search"; ns = "n search";
nrb = ifSudo "sudo nixos-rebuild"; nrb = ifSudo "sudo nixos-rebuild";
# ps
ps = "${pkgs.procs}/bin/procs";
# sudo # sudo
si = ifSudo "env sudo -i"; si = ifSudo "env sudo -i";
sudo = ifSudo "sudo -E "; sudo = ifSudo "sudo -E ";

View file

@ -34,24 +34,29 @@ in
du = "du -h"; du = "du -h";
ls = "${pkgs.exa}/bin/exa"; ls = "${pkgs.exa}/bin/exa";
l = "ls -lh --git"; l = "ls -lhg --git";
la = "l -a"; la = "l -a";
ps = "${pkgs.procs}/bin/procs";
rz = "exec zsh"; rz = "exec zsh";
}; };
systemPackages = with pkgs; [ systemPackages = with pkgs; [
bat
bzip2 bzip2
direnv direnv
exa
gitAndTools.hub gitAndTools.hub
gzip gzip
lrzip lrzip
p7zip p7zip
procs
skim skim
unrar unrar
unzip unzip
zsh-completions
xz xz
zsh-completions
]; ];
}; };