diff options
Diffstat (limited to 'home/gpg.nix')
| -rw-r--r-- | home/gpg.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/home/gpg.nix b/home/gpg.nix index 134c49f..377beb7 100644 --- a/home/gpg.nix +++ b/home/gpg.nix @@ -1,11 +1,12 @@ { config, lib, pkgs, ... }: with lib; { - config = { - programs.gpg = mkIf (!config.home.isolation.active) { + config = mkIf (!config.home.isolation.active) { + programs.gpg = { enable = true; + scdaemonSettings.disable-ccid = true; }; - services.gpg-agent = mkIf (!config.home.isolation.active) { + services.gpg-agent = { enable = true; enableBashIntegration = true; |
