{ config, lib, pkgs, ... }: let isEnabled = config.my.home.wm.windowManager == "sway"; in { config = lib.mkIf isEnabled { home.packages = with pkgs; [ gnome.gnome-keyring ]; services.gnome-keyring = { enable = true; components = [ "pkcs11" "secrets" "ssh" ]; }; }; }