mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
13 lines
372 B
Nix
13 lines
372 B
Nix
{pkgs, ...}: {
|
|
programs.gnupg.agent.enableSSHSupport = false;
|
|
services.gnome.gnome-keyring.enable = true;
|
|
services.gnome.gcr-ssh-agent.enable = true;
|
|
programs.seahorse.enable = true;
|
|
programs.ssh = {
|
|
enableAskPassword = true;
|
|
askPassword = "${pkgs.seahorse}/libexec/seahorse/askpass";
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
seahorse
|
|
];
|
|
}
|