feat: gnome-keyring - add gui app

This commit is contained in:
Ryan Yin
2025-07-29 13:47:14 +08:00
parent bc2523302d
commit 77c9514b88
+4 -1
View File
@@ -2,7 +2,8 @@
config, config,
pkgs, pkgs,
... ...
}: { }:
{
# security with polkit # security with polkit
security.polkit.enable = true; security.polkit.enable = true;
# security with gnome-kering # security with gnome-kering
@@ -12,6 +13,8 @@
# https://wiki.gnome.org/Projects/GnomeKeyring/Ssh # https://wiki.gnome.org/Projects/GnomeKeyring/Ssh
gcr-ssh-agent.enable = false; 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 # The OpenSSH agent remembers private keys for you
# so that you dont have to type in passphrases every time you make an SSH connection. # so that you dont have to type in passphrases every time you make an SSH connection.
# Use `ssh-add` to add a key to the agent. # Use `ssh-add` to add a key to the agent.