Flake update 2025-11-05

This commit is contained in:
Julia Lange 2025-11-05 08:27:13 -08:00
parent 1e89810074
commit dbe6ea5369
Signed by: Julia
SSH key fingerprint: SHA256:50XUMcOFYPUs9/1j7p9SPnwASZ7QnxXm7THF7HkbqzQ
4 changed files with 93 additions and 91 deletions

View file

@ -12,10 +12,12 @@
config = lib.mkIf config.git.enable {
programs.git = {
enable = true;
userName = config.git.username;
userEmail = config.git.email;
extraConfig = {
user.signingkey = "${config.home.homeDirectory}/.ssh/id_ed25519.pub";
settings = {
user = {
name = config.git.username;
email = config.git.email;
signingkey = "${config.home.homeDirectory}/.ssh/id_ed25519.pub";
};
gpg.format = "ssh";
commit.gpgSign = "true";
tag.gpgSign = "true";