New packages and zsh aliases

This commit is contained in:
Random936 2024-10-01 14:40:22 -07:00
parent 7a7fe6e792
commit b24d05e1f4
2 changed files with 8 additions and 0 deletions

View File

@ -17,8 +17,10 @@
feh
dconf
docker
zoom-us
discord
wireshark
flameshot
pavucontrol
google-chrome
bitwarden-cli

View File

@ -14,6 +14,12 @@
shellAliases = {
cd = "z";
ls = "eza";
awkuniq = "sort | uniq";
histogram = "awkuniq -c | sort -nr";
json-less = "jq -C . | less -M";
csv2json = "python -c 'import csv, json, sys; print(json.dumps([dict(r) for r in csv.DictReader(sys.stdin)]))'";
# Nix Specific aliases
update-darwin = "darwin-rebuild switch --flake ~/dotfiles";
update-config = "sudo nixos-rebuild switch --flake ~/dotfiles";
update-home = "home-manager switch --flake ~/dotfiles";