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:
parent
6094d2a439
commit
d14252433d
1 changed files with 2 additions and 2 deletions
|
|
@ -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.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue