12 lines
191 B
Nix
12 lines
191 B
Nix
{
|
|
programs.gpg = {
|
|
enable = true;
|
|
settings = { };
|
|
};
|
|
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
defaultCacheTtl = 600;
|
|
# extraConfig = "allow-loopback-pinentry";
|
|
};
|
|
}
|