mirror of
https://github.com/ParkerTenBroeck/dotfiles.git
synced 2026-06-07 05:08:51 -04:00
Merge remote-tracking branch 'refs/remotes/origin/main'
This commit is contained in:
commit
16b7598a53
1 changed files with 36 additions and 6 deletions
|
|
@ -1,8 +1,38 @@
|
||||||
{ pkgs, ...}: {
|
{ pkgs, ...}: {
|
||||||
home-manager.users.may.home.packages = with pkgs; [
|
home-manager.users.may = {
|
||||||
git
|
home.packages = with pkgs; [
|
||||||
gitui
|
git
|
||||||
# yes I'm a baby I know
|
gitui
|
||||||
gh
|
# yes I'm a baby I know
|
||||||
];
|
gh
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
user = {
|
||||||
|
name = "Parker TenBroeck";
|
||||||
|
email = "51721964+ParkerTenBroeck@users.noreply.github.com";
|
||||||
|
};
|
||||||
|
|
||||||
|
credential."https://github.com" = {
|
||||||
|
helper = "!/etc/profiles/per-user/may/bin/gh auth git-credential";
|
||||||
|
};
|
||||||
|
|
||||||
|
credential."https://gist.github.com" = {
|
||||||
|
helper = "!/etc/profiles/per-user/may/bin/gh auth git-credential";
|
||||||
|
};
|
||||||
|
|
||||||
|
filter.lfs = {
|
||||||
|
clean = "git-lfs clean -- %f";
|
||||||
|
smudge = "git-lfs smudge -- %f";
|
||||||
|
process = "git-lfs filter-process";
|
||||||
|
required = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
pull.ff = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue