Install gpg-agent and activate git commit signing
This commit is contained in:
parent
d8f7b8bbc2
commit
3d056c581b
|
@ -15,6 +15,7 @@ in
|
|||
modules/vscode.nix
|
||||
modules/sway.nix
|
||||
modules/git.nix
|
||||
modules/gpg.nix
|
||||
] ++ lib.optionals (config.networking.hostName == "jimbo") [
|
||||
modules/kanshi.nix
|
||||
];
|
||||
|
|
|
@ -1,12 +1,29 @@
|
|||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
ignores = [ ".vscode" ];
|
||||
ignores = [
|
||||
".vscode"
|
||||
"*.sql"
|
||||
"*.sql.gz"
|
||||
"*.sql.zst"
|
||||
];
|
||||
userName = "fleaz";
|
||||
userEmail = "mail@felixbreidenstein.de";
|
||||
signing = {
|
||||
key = "9166FF9DFC1F4637";
|
||||
signByDefault = true;
|
||||
};
|
||||
extraConfig = {
|
||||
"init" = {
|
||||
defaultBranch = "main";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
aliases = {
|
||||
cpr = "!f() { git fetch origin refs/pull/$1/head && git checkout FETCH_HEAD; }; f";
|
||||
};
|
||||
|
||||
includes = [{
|
||||
condition = "gitdir:~/codemonauts/";
|
||||
contents = {
|
||||
|
@ -14,6 +31,9 @@
|
|||
email = "felix@codemonauts.com";
|
||||
name = "Felix Breidenstein";
|
||||
};
|
||||
commit = {
|
||||
gpgSign = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
|
@ -23,6 +43,9 @@
|
|||
email = "felix@codemonauts.com";
|
||||
name = "Felix Breidenstein";
|
||||
};
|
||||
commit = {
|
||||
gpgSign = false;
|
||||
};
|
||||
};
|
||||
}];
|
||||
};
|
||||
|
|
7
home-manager/modules/gpg.nix
Normal file
7
home-manager/modules/gpg.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
pinentryFlavor = "gtk2";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in a new issue