added a bunch of shell aliases
This commit is contained in:
parent
f15ab00dfb
commit
bed8cb4c5c
1 changed files with 15 additions and 4 deletions
|
@ -30,16 +30,27 @@
|
|||
theme = "agnoster";
|
||||
};
|
||||
|
||||
shellAliases = {
|
||||
shellAliases = let ezaArgs = "--time-style='+%Y-%m-%d %H:%M' --icons";
|
||||
in {
|
||||
ff = "fastfetch";
|
||||
neofetch = "fastfetch";
|
||||
nf = "fastfetch";
|
||||
cat = "bat";
|
||||
|
||||
ls = "eza --icons";
|
||||
l = "eza -lhg --icons";
|
||||
l = "eza -lhg ${ezaArgs}";
|
||||
la = "eza -lAh ${ezaArgs}";
|
||||
ll = "eza -lhg ${ezaArgs}";
|
||||
ls = "eza ${ezaArgs}";
|
||||
lsa = "eza -lah ${ezaArgs}";
|
||||
|
||||
upd = "sudo nixos-generate-config --dir /etc/nixos/hosts && sudo rm /etc/nixos/hosts/configuration.nix && sudo mv /etc/nixos/hosts/hardware-configuration.nix /etc/nixos/hosts/$(hostname).nix && git -C /etc/nixos --git-dir=/etc/nixos/.git add /etc/nixos/hosts/$(hostname).nix && sudo nixos-rebuild switch";
|
||||
nixrc = "$EDITOR /etc/nixos";
|
||||
upd =
|
||||
"sudo nixos-generate-config --dir /etc/nixos/hosts && sudo rm /etc/nixos/hosts/configuration.nix && sudo mv /etc/nixos/hosts/hardware-configuration.nix /etc/nixos/hosts/$(hostname).nix && git -C /etc/nixos --git-dir=/etc/nixos/.git add /etc/nixos/hosts/$(hostname).nix && sudo nixos-rebuild switch";
|
||||
|
||||
taildrop = "tailscale file";
|
||||
|
||||
forgejo-runner = "act_runner";
|
||||
runactions = "act_runner exec --default-actions-url=https://www.coastalcommits.com --gitea-instance=https://www.coastalcommits.com";
|
||||
|
||||
c = "clear";
|
||||
# alias sudo to itself so user aliases can be sudoed
|
||||
|
|
Loading…
Reference in a new issue