Setup hooks for chezmoi apply, setup nushell

This commit is contained in:
Tyler Mayoff 2025-02-01 10:27:14 -05:00
parent fe689a9a67
commit 2e6db891ec
7 changed files with 38 additions and 89 deletions

View file

@ -0,0 +1,21 @@
{...}: {
home.shellAliases = {
# Git
gc = "git commit";
gcm = "git commit -m";
# gac = "git add . and git commit";
# gacp = "gac and git push";
gs = "git status";
# nix
flake = "nix flake";
# home-manager
hm-upgrade = "nix flake update --flake ~/.local/share/chezmoi/dot_config/flake#";
hm-update = "home-manager switch --flake ~/.config/flake";
# chezmoi
dot_apply = "chezmoi apply";
dot_pull = "chezmoi update";
};
}