[shared] Move git signing key to systemConfig

This commit is contained in:
2025-10-14 20:15:41 +02:00
parent 9434f32e06
commit 0109aeec8a
5 changed files with 10 additions and 10 deletions

View File

@@ -1,4 +1,9 @@
{ pkgs, common, ... }:
{
pkgs,
common,
systemConfig,
...
}:
{
home.packages = with pkgs; [
@@ -23,7 +28,10 @@
p = "push";
};
signing.signByDefault = true;
signing = {
signByDefault = true;
key = systemConfig.git.signing.key;
};
extraConfig = {
init.defaultBranch = "main";