update
This commit is contained in:
parent
c60f15823b
commit
cdd417f391
1 changed files with 17 additions and 2 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
home = config.home.homeDirectory;
|
home = config.home.homeDirectory;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
@ -15,7 +15,22 @@ in
|
||||||
};
|
};
|
||||||
userEmail = "rs@rs.ht";
|
userEmail = "rs@rs.ht";
|
||||||
userName = "Ray Andrew";
|
userName = "Ray Andrew";
|
||||||
signing.key = "${home}/.ssh/id_ed25519.pub";
|
signing = {
|
||||||
|
key = "${home}/.ssh/id_ed25519.pub";
|
||||||
|
signByDefault = true;
|
||||||
|
gpgPath = "";
|
||||||
|
};
|
||||||
|
ignores = [
|
||||||
|
".DS_Store"
|
||||||
|
"*~"
|
||||||
|
"*.swp"
|
||||||
|
];
|
||||||
|
extraConfig = {
|
||||||
|
gpg.format = "ssh";
|
||||||
|
core.editor = "nvim";
|
||||||
|
credential.helper = "store --file ${home}/.git-credentials";
|
||||||
|
pull.rebase = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.gh = {
|
programs.gh = {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue