1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

modules/output: add waylandSupport option

This commit is contained in:
Sandro Jäckel 2025-09-09 17:36:13 +02:00 committed by Matt Sturgeon
parent e3faa69c0d
commit 51edc33c97

View file

@ -29,6 +29,13 @@ in
'';
};
waylandSupport = mkOption {
type = types.bool;
default = pkgs.stdenv.hostPlatform.isLinux;
defaultText = lib.literalExpression "pkgs.stdenv.hostPlatform.isLinux";
description = "Enable additional wayland support, such as wl-clipboard for wayland clipboard syncing.";
};
withRuby = mkOption {
type = types.bool;
default = true;
@ -199,6 +206,7 @@ in
extraPython3Packages
viAlias
vimAlias
waylandSupport
withRuby
withNodeJs
withPerl