Enable GPG signing for git on nixbox

This commit is contained in:
floppydiskette 2023-04-26 23:55:50 +01:00
parent 2313b99da5
commit 7686391441
No known key found for this signature in database
GPG key ID: B428A0D1B4E2BAB0

View file

@ -47,6 +47,7 @@
enable = true;
interactiveShellInit = ''
set fish_greeting # Disable fish_greeting
export GPG_TTY=$(tty)
'';
};
@ -55,6 +56,10 @@
enable = true;
userName = "Frankie B.";
userEmail = "git@diskfloppy.me";
signing = {
key = "B428A0D1B4E2BAB0";
signByDefault = true;
};
};
};