{ config, lib, pkgs, ... }: with lib; let cfg = config.nixfiles.modules.wayland; in { options.nixfiles.modules.wayland.enable = mkEnableOption "Wayland"; config = mkIf cfg.enable { hm.home.packages = with pkgs; [wl-clipboard]; }; }