Price Hiller
f47cd2138d
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
28 lines
605 B
Nix
28 lines
605 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
programs.gpg = {
|
|
homedir = "${config.xdg.dataHome}/gnupg";
|
|
enable = true;
|
|
mutableKeys = false;
|
|
mutableTrust = false;
|
|
publicKeys = [
|
|
{
|
|
source = ./public-gpg-yubikey.asc;
|
|
trust = "ultimate";
|
|
}
|
|
];
|
|
};
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableSshSupport = true;
|
|
enableZshIntegration = true;
|
|
pinentryPackage = pkgs.pinentry-qt;
|
|
maxCacheTtl = 14400;
|
|
maxCacheTtlSsh = 14400;
|
|
sshKeys = [ "530D3EC95C32AB9EC33714AAF865738D6E77680A" ];
|
|
extraConfig = ''
|
|
allow-loopback-pinentry
|
|
'';
|
|
};
|
|
}
|