Add gnome-keyring

This commit is contained in:
GHOSCHT 2023-12-25 23:12:37 +01:00
parent d446d04ad7
commit bff5e90721
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82
2 changed files with 13 additions and 0 deletions

View file

@ -31,6 +31,7 @@
../common/optional/wireshark.nix
../common/optional/gamemode.nix
../common/optional/kde-connect.nix
../common/optional/gnome-keyring.nix
];
nixpkgs = {

View file

@ -0,0 +1,12 @@
{
config,
lib,
pkgs,
vars,
...
}: let
in {
security.pam.services.${vars.user}.enableGnomeKeyring = true;
services.gnome.gnome-keyring.enable = true;
programs.seahorse.enable = true;
}