diff options
author | Alex Auvolat <alex@adnab.me> | 2023-02-10 23:40:21 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-02-10 23:40:21 +0100 |
commit | edf15b5b3663283c436512c8012a6afc270e9202 (patch) | |
tree | e7d72c96c9515df62b10853891b39dc6ca3e9c76 | |
parent | 563b416e67dfc74f6a1c8916e3d44dba710533d2 (diff) | |
download | user-config-edf15b5b3663283c436512c8012a6afc270e9202.tar.gz user-config-edf15b5b3663283c436512c8012a6afc270e9202.zip |
disable gpg agent ssh
-rw-r--r-- | nixos/common.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/common.nix b/nixos/common.nix index f6cee75..067326f 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -163,7 +163,7 @@ in programs.mtr.enable = true; programs.gnupg.agent = { enable = true; - enableSSHSupport = true; + #enableSSHSupport = true; }; # List services that you want to enable: |