ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
47 lines
748 B
Nix
47 lines
748 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 (lib.mdDoc "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
|
|
];
|
|
|
|
};
|
|
|
|
}
|