Migrate git config

This commit is contained in:
2023-01-03 00:02:40 +00:00
parent 447503fadf
commit ed7acab5a8
4 changed files with 5 additions and 19 deletions

View File

@ -1,18 +0,0 @@
[user]
email = jordan@vimium.com
name = Jordan Holt
signingkey = B8CFFF61F1CCF520
[rebase]
autosquash = true
[commit]
gpgsign = true
[push]
default = current
[pull]
rebase = true
[alias]
amend = commit --amend
lg = log --color --graph --abbrev-commit --
ls = ls-files
unadd = reset HEAD
undo-commit = reset --soft "HEAD^"

View File

@ -7,7 +7,7 @@
./editors/vscode.nix
./security/gpg.nix
./security/pass.nix
./shell/git.nix
./shell/git
./shell/zsh
];
}

View File

@ -30,5 +30,9 @@ in {
pull.rebase = true;
};
};
home.configFile = {
"git/ignore".source = ./ignore;
};
};
}