Switch to pinentry-qt for graphical envs
This commit is contained in:
parent
df62cf69ac
commit
0d516a3a2d
|
@ -32,7 +32,10 @@ in {
|
||||||
# see here: https://github.com/nix-community/home-manager/issues/3864
|
# see here: https://github.com/nix-community/home-manager/issues/3864
|
||||||
services.gpg-agent = mkIf (system == "x86_64-linux") {
|
services.gpg-agent = mkIf (system == "x86_64-linux") {
|
||||||
enable = true;
|
enable = true;
|
||||||
pinentryPackage = pkgs.pinentry-curses;
|
pinentryPackage =
|
||||||
|
if config.${namespace}.windowManagers.sway.enable
|
||||||
|
then pkgs.pinentry-qt
|
||||||
|
else pkgs.pinentry-curses;
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
enableSshSupport = true;
|
enableSshSupport = true;
|
||||||
sshKeys = [
|
sshKeys = [
|
||||||
|
|
Loading…
Reference in a new issue