We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5061311 commit 051e8caCopy full SHA for 051e8ca
1 file changed
modules/gui/default.nix
@@ -112,8 +112,16 @@ in
112
"xdg/kitty/no-preference-theme.auto.conf".source = "${kittyThemes}/rose-pine.conf";
113
};
114
115
- # Conflict override since multiple DEs set this option
116
- programs.ssh.askPassword = pkgs.lib.mkForce (lib.getExe pkgs.ksshaskpass.out);
+ programs.ssh = {
+ # setup ssh agent with askpass on login by default
117
+ # if you want to forward a fido ssh key that requires a pin, the ssh agent
118
+ # needs askpass to prompt for the pin when the agent uses the key.
119
+ startAgent = true;
120
+ enableAskPassword = true;
121
+
122
+ # Conflict override since multiple DEs set this option
123
+ askPassword = pkgs.lib.mkForce (lib.getExe pkgs.kdePackages.ksshaskpass);
124
+ };
125
126
xdg.portal = {
127
enable = true;
0 commit comments