home(auth): add git commit signing configuration

This commit is contained in:
514fpv 2024-01-02 14:50:39 +08:00
parent 170d21f926
commit ef99391f45
Signed by: koishi
SSH key fingerprint: SHA256:VkIdW3jUIiqecV2WNAje2fGU5lEhN0XZ58DN0NS4pv0
2 changed files with 32 additions and 0 deletions

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;
} ];
}