NixOS-Config/home/services/gnome-keyring.nix

14 lines
196 B
Nix
Raw Normal View History

2024-08-24 22:16:51 -04:00
{pkgs, ...}: {
services.gnome-keyring = {
enable = true;
components = [
"ssh"
];
};
home.packages = with pkgs; [
gnome.gnome-keyring
gnome.libgnome-keyring
];
}