{ lib, config, pkgs, ... }: let cfg = config.my.home.seahorse; in { options.my.home.seahorse = with lib; { enable = mkEnableOption "seahorse configuration"; }; config.home.packages = with pkgs; lib.mkIf cfg.enable ([ gnome.seahorse ]); }