Add gnome-keyring
This commit is contained in:
parent
d446d04ad7
commit
bff5e90721
2 changed files with 13 additions and 0 deletions
|
@ -31,6 +31,7 @@
|
||||||
../common/optional/wireshark.nix
|
../common/optional/wireshark.nix
|
||||||
../common/optional/gamemode.nix
|
../common/optional/gamemode.nix
|
||||||
../common/optional/kde-connect.nix
|
../common/optional/kde-connect.nix
|
||||||
|
../common/optional/gnome-keyring.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
|
|
12
hosts/common/optional/gnome-keyring.nix
Normal file
12
hosts/common/optional/gnome-keyring.nix
Normal 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;
|
||||||
|
}
|
Loading…
Reference in a new issue