mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-09 22:49:42 +00:00
Add gnome-keyring
This commit is contained in:
parent
0403ff8fb4
commit
a6eb7496f7
|
@ -1,5 +1,6 @@
|
|||
_: {
|
||||
imports = [
|
||||
./dunst.nix
|
||||
./gnome-keyring.nix
|
||||
];
|
||||
}
|
||||
|
|
12
home/services/gnome-keyring.nix
Normal file
12
home/services/gnome-keyring.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{pkgs, ...}: {
|
||||
config = {
|
||||
services.gnome-keyring.enable = true;
|
||||
xdg.portal.config.common = {
|
||||
"org.freedesktop.impl.portal.Secret" = [ "gnome-keyring" ];
|
||||
};
|
||||
|
||||
# Enable seahorse (application for managing encryption keys
|
||||
# and passwords in the gnome keyring)
|
||||
home.packages = with pkgs; [ seahorse ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue