{ lib, config, pkgs, ... }: with lib; let cfg = config.modules.keyring; in { options.modules.keyring = { enable = mkEnableOption "keyring"; }; config = mkIf cfg.enable { # Development packages home.packages = with pkgs; [ seahorse ]; # Systemwide configuration systemwide = { services.gnome.gnome-keyring = { enable = true; }; }; }; }