Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions modules/gui/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,16 @@ in
"xdg/kitty/no-preference-theme.auto.conf".source = "${kittyThemes}/rose-pine.conf";
};

# Conflict override since multiple DEs set this option
programs.ssh.askPassword = pkgs.lib.mkForce (lib.getExe pkgs.ksshaskpass.out);
programs.ssh = {
# setup ssh agent with askpass on login by default
# if you want to forward a fido ssh key that requires a pin, the ssh agent
# needs askpass to prompt for the pin when the agent uses the key.
startAgent = true;
enableAskPassword = true;

# Conflict override since multiple DEs set this option
askPassword = pkgs.lib.mkForce (lib.getExe pkgs.kdePackages.ksshaskpass);
};

xdg.portal = {
enable = true;
Expand Down
Loading