From 77c9514b88e22452e611eba94a8623f086d9523b Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Tue, 29 Jul 2025 13:47:14 +0800 Subject: [PATCH] feat: gnome-keyring - add gui app --- modules/nixos/desktop/security.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/nixos/desktop/security.nix b/modules/nixos/desktop/security.nix index e2242562..3843101f 100644 --- a/modules/nixos/desktop/security.nix +++ b/modules/nixos/desktop/security.nix @@ -2,7 +2,8 @@ config, pkgs, ... -}: { +}: +{ # security with polkit security.polkit.enable = true; # security with gnome-kering @@ -12,6 +13,8 @@ # https://wiki.gnome.org/Projects/GnomeKeyring/Ssh gcr-ssh-agent.enable = false; }; + # seahorse is a GUI App for GNOME Keyring. + programs.seahorse.enable = true; # The OpenSSH agent remembers private keys for you # so that you don’t have to type in passphrases every time you make an SSH connection. # Use `ssh-add` to add a key to the agent.