diff options
author | Ben Sima <ben@bsima.me> | 2023-04-24 14:19:41 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-07-28 21:03:24 -0400 |
commit | 033c2e85e26523ea6e0c2cc10afb99a169aacc4d (patch) | |
tree | 54166f366e44e2b84f01c5dc1e5f6a074bfbeb2a /lib | |
parent | 66207b1ad9f4c63885260fb91323f1556ababa5b (diff) |
enable ssh support and sort options
Change-Id: I9686bba26c24ee621fa9b83784e2b098a0c48d00
Diffstat (limited to 'lib')
-rw-r--r-- | lib/linux.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/linux.nix b/lib/linux.nix index 60f1184..77d48d3 100644 --- a/lib/linux.nix +++ b/lib/linux.nix @@ -321,14 +321,14 @@ in }; gpg-agent = { + defaultCacheTtl = 7200; # 2 hours enable = true; + enableExtraSocket= true; enableScDaemon = true; # smart card support - defaultCacheTtl = 7200; # 2 hours + enableSshSupport = true; maxCacheTtl = 86400; # 24 hours - enableSshSupport = false; - enableExtraSocket = true; - verbose = true; pinentryFlavor = "curses"; + verbose = true; extraConfig = '' allow-emacs-pinentry # StreamLocalBindUnlink yes |