feat(auth): add git commit signing configuration

This commit is contained in:
514fpv 2024-01-02 14:50:39 +08:00
parent ead2c49454
commit a8c8d75e1c
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
2 changed files with 32 additions and 0 deletions

25
home/auth/home.nix Normal file
View file

@ -0,0 +1,25 @@
{ pkgs
, lib
, config
, ...}: with lib; {
# git signing configuration
programs.git = {
signing = {
signByDefault = true;
gpgPath = "${pkgs.openssh}/bin/ssh-keygen";
key = null;
};
extraConfig = {
user.signingkey = "~/.ssh/id_ed25519.pub";
gpg = {
format = "ssh";
# compiled from trusted keys in auth module
ssh.allowedSignersFile = toString (pkgs.writeText
"allowed_signers" (foldr (key: folded:
folded + "koishi@514fpv.one ${key}") ""
config.passthrough.publicKeys));
};
};
};
}

7
home/auth/nixos.nix Normal file
View file

@ -0,0 +1,7 @@
{ config
, ... }: {
# this module passes openssh public keys to home-manager
users.homeModules = [ {
passthrough.publicKeys = config.faucet.auth.openssh.publicKeys;
} ];
}