1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-02 07:01:04 +01:00

modules/output: improve waylandSupport

This commit is contained in:
Heitor Augusto 2025-11-28 09:45:45 -03:00 committed by Matt Sturgeon
parent 6094d2a439
commit d14252433d

View file

@ -30,8 +30,8 @@ in
waylandSupport = mkOption { waylandSupport = mkOption {
type = types.bool; type = types.bool;
default = pkgs.stdenv.hostPlatform.isLinux; default = lib.meta.availableOn pkgs.stdenv.hostPlatform pkgs.wayland;
defaultText = lib.literalExpression "pkgs.stdenv.hostPlatform.isLinux"; defaultText = lib.literalExpression "lib.meta.availableOn pkgs.stdenv.hostPlatform pkgs.wayland";
description = "Enable additional wayland support, such as wl-clipboard for wayland clipboard syncing."; description = "Enable additional wayland support, such as wl-clipboard for wayland clipboard syncing.";
}; };