Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
566 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
# Seahorse.
{
config,
pkgs,
lib,
...
}:
{
###### interface
options = {
programs.seahorse = {
enable = lib.mkEnableOption "Seahorse, a GNOME application for managing encryption keys and passwords in the GNOME Keyring";
};
};
###### implementation
config = lib.mkIf config.programs.seahorse.enable {
programs.ssh.askPassword = lib.mkDefault "${pkgs.seahorse}/libexec/seahorse/ssh-askpass";
environment.systemPackages = [
pkgs.seahorse
];
services.dbus.packages = [
pkgs.seahorse
];
};
}