feat(auth): add git commit signing configuration
This commit is contained in:
parent
ead2c49454
commit
a8c8d75e1c
25
home/auth/home.nix
Normal file
25
home/auth/home.nix
Normal 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
7
home/auth/nixos.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ config
|
||||
, ... }: {
|
||||
# this module passes openssh public keys to home-manager
|
||||
users.homeModules = [ {
|
||||
passthrough.publicKeys = config.faucet.auth.openssh.publicKeys;
|
||||
} ];
|
||||
}
|
Loading…
Reference in a new issue