fix(home): Disable cb on wayland

This commit is contained in:
punkfairie 2025-02-28 19:04:32 -08:00
parent 6817826e04
commit b138bc03b2
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -19,9 +19,9 @@ in {
clipboard = lib.mkOption { clipboard = lib.mkOption {
type = lib.types.package; type = lib.types.package;
default = default =
if config.marleyos.wayland.hyprland.enable if config.marleyos.xorg.xsession.enable
then pkgs.wl-clipboard then pkgs.clipboard-jh
else pkgs.clipboard-jh; else pkgs.wl-clipboard;
description = "The clipboard manager to use."; description = "The clipboard manager to use.";
}; };