[Altair] Adds Thunderbird email, protonmail bridge. [Nix] Fixes deprecated expressions

This commit is contained in:
2026-04-21 19:04:47 -07:00
parent 8fbfb551f5
commit 6674ca40fa
9 changed files with 73 additions and 41 deletions

View File

@@ -2,27 +2,29 @@
{
programs.git = {
enable = true;
aliases = {
"co" = "checkout";
"s" = "status";
"b" = "branch";
"r" = "remote";
"amend" = "commit -a --amend --no-edit";
"c" = "commit -am";
"l" = "log --oneline";
settings = {
alias = {
"co" = "checkout";
"s" = "status";
"b" = "branch";
"r" = "remote";
"amend" = "commit -a --amend --no-edit";
"c" = "commit -am";
"l" = "log --oneline";
};
extraConfig = {
pull = {
rebase = true;
};
log = {
date = "iso";
};
init = {
defaultBranch = "main";
};
};
# Enable the delta diff pager.
delta.enable = true;
};
extraConfig = {
pull = {
rebase = true;
};
log = {
date = "iso";
};
init = {
defaultBranch = "main";
};
};
# Enable the delta diff pager.
delta.enable = true;
};
}