468cb5980b
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
47 lines
736 B
Nix
47 lines
736 B
Nix
# Seahorse.
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
# Added 2019-08-27
|
|
imports = [
|
|
(mkRenamedOptionModule
|
|
[ "services" "gnome3" "seahorse" "enable" ]
|
|
[ "programs" "seahorse" "enable" ])
|
|
];
|
|
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
programs.seahorse = {
|
|
|
|
enable = mkEnableOption "Seahorse, a GNOME application for managing encryption keys and passwords in the GNOME Keyring";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf config.programs.seahorse.enable {
|
|
|
|
programs.ssh.askPassword = mkDefault "${pkgs.gnome.seahorse}/libexec/seahorse/ssh-askpass";
|
|
|
|
environment.systemPackages = [
|
|
pkgs.gnome.seahorse
|
|
];
|
|
|
|
services.dbus.packages = [
|
|
pkgs.gnome.seahorse
|
|
];
|
|
|
|
};
|
|
|
|
}
|