nix/users/gandalf/modules/keyring.nix

16 lines
199 B
Nix

{ pkgs, ... }: {
services.gnome-keyring = {
enable = true;
components = [
"pkcs11"
"secrets"
"ssh"
];
};
home.packages = with pkgs; [
gnome.seahorse
];
}