lol

gnupg agent module: fix ssh agent assertion logic

authored by

Franz Pletz and committed by
Robin Gloster
32e79046 5b3e403e

+1 -1
+1 -1
nixos/modules/programs/gnupg.nix
··· 92 92 ''); 93 93 94 94 assertions = [ 95 - { assertion = cfg.agent.enableSSHSupport && !config.programs.ssh.startAgent; 95 + { assertion = cfg.agent.enableSSHSupport -> !config.programs.ssh.startAgent; 96 96 message = "You can't use ssh-agent and GnuPG agent with SSH support enabled at the same time!"; 97 97 } 98 98 ];