mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
18 lines
484 B
Nix
18 lines
484 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [ pinentry.gtk2 ];
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableExtraSocket = true;
|
|
enableSshSupport = false;
|
|
pinentryFlavor = "gtk2";
|
|
extraConfig = lib.mkMerge [
|
|
"auto-expand-secmem 0x30000" # otherwise "gpg: public key decryption failed: Cannot allocate memory"
|
|
"pinentry-timeout 30"
|
|
"allow-loopback-pinentry"
|
|
"enable-ssh-support"
|
|
"no-allow-external-cache"
|
|
];
|
|
};
|
|
}
|