nixpkgs/nixos/modules/programs/seahorse.nix
2024-07-01 08:26:45 +02:00

37 lines
559 B
Nix

# 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
];
};
}