about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-10-21 21:43:52 +0000
committerGitHub <noreply@github.com>2019-10-21 21:43:52 +0000
commit4f890f86fe05f08b4cf5e86e7d22878483bfd98c (patch)
tree27bf9652819702d5e3eed85e027df689caa7910b /nixos
parentf4725b30fffc795c7c8383700af719de0d377eb7 (diff)
parentaa910d164d478dfb871bc6a8db416ca887cfc8f7 (diff)
downloadnixlib-4f890f86fe05f08b4cf5e86e7d22878483bfd98c.tar
nixlib-4f890f86fe05f08b4cf5e86e7d22878483bfd98c.tar.gz
nixlib-4f890f86fe05f08b4cf5e86e7d22878483bfd98c.tar.bz2
nixlib-4f890f86fe05f08b4cf5e86e7d22878483bfd98c.tar.lz
nixlib-4f890f86fe05f08b4cf5e86e7d22878483bfd98c.tar.xz
nixlib-4f890f86fe05f08b4cf5e86e7d22878483bfd98c.tar.zst
nixlib-4f890f86fe05f08b4cf5e86e7d22878483bfd98c.zip
Merge pull request #71547 from hedning/seahorse-ssh-askpass
nixos/seahorse: Use seahorse's askpass by default
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/programs/seahorse.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/programs/seahorse.nix b/nixos/modules/programs/seahorse.nix
index c08b0a85374c..b229d2a2c0db 100644
--- a/nixos/modules/programs/seahorse.nix
+++ b/nixos/modules/programs/seahorse.nix
@@ -31,6 +31,8 @@ with lib;
 
   config = mkIf config.programs.seahorse.enable {
 
+    programs.ssh.askPassword = mkDefault "${pkgs.gnome3.seahorse}/libexec/seahorse/ssh-askpass";
+
     environment.systemPackages = [
       pkgs.gnome3.seahorse
     ];