.dotfiles/dot_config/flake/home/shell.nix
2025-12-03 10:53:56 -05:00

29 lines
716 B
Nix

{...}: {
home.shellAliases = {
# Git
gc = "git commit";
gcm = "git commit -m";
gac = "git add . and git commit";
gacp = "gac and git push";
gs = "git status";
# Git worktree
gwa = "git worktree add";
gwl = "git worktree list";
gwr = "git worktree remove";
gwp = "git worktree prune";
# 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";
dot_update = "flake update --flake $CHEZMOI_SOURCE_DIR/dot_config/flake && dot_apply";
};
}