Secret Service: Difference between revisions

Axka (talk | contribs)
mNo edit summary
Axka (talk | contribs)
No edit summary
Line 15: Line 15:
{{file|home.nix|nix|<nowiki>
{{file|home.nix|nix|<nowiki>
services.gnome-keyring.enable = true;
services.gnome-keyring.enable = true;
</nowiki>}}
home.packages = [ pkgs.gcr ]; # Provides org.gnome.keyring.SystemPrompter
 
</nowiki>}}OR
{{Note|As of 2024-11-18 the only way to add D-Bus session service definitions without defining them in Nix is in NixOS. Add the following to your NixOS system configuration to fix GNOME Keyring's password prompter: [https://rycee.gitlab.io/home-manager/options.xhtml#opt-services.gpg-agent.pinentryPackage]
<syntaxhighlight lang="nix">
services.dbus.packages = [ pkgs.gcr ];
</syntaxhighlight>
}}
 
OR


Add the following to your NixOS configuration:
Add the following to your NixOS configuration: