diff --git a/options.xhtml b/options.xhtml index 755eef510..8ba500782 100644 --- a/options.xhtml +++ b/options.xhtml @@ -93882,6 +93882,187 @@ string

+
+ + services.wayvnc.enable + + +
+
+

Whether to enable wayvnc VNC server.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/wayvnc.nix> + +
+
+
+ + services.wayvnc.package + + +
+
+

The wayvnc package to use.

+ +

Type: +package

+ +

Default: +pkgs.wayvnc

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/wayvnc.nix> + +
+
+
+ + services.wayvnc.autoStart + + +
+
+

Whether to enable autostarting of wayvnc.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/wayvnc.nix> + +
+
+
+ + services.wayvnc.settings + + +
+
+

See CONFIGURATION section in wayvnc(1).

+ +

Type: +attribute set of (atom (null, bool, int, float or string))

+ +

Default: +{ }

+ +

Example:

{
+  address = "0.0.0.0";
+  port = 5901;
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/wayvnc.nix> + +
+
+
+ + services.wayvnc.settings.address + + +
+
+

The address to which the server shall bind, e.g. 0.0.0.0 or +localhost.

+ +

Type: +string

+ +

Example: +"0.0.0.0"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/wayvnc.nix> + +
+
+
+ + services.wayvnc.settings.port + + +
+
+

The port to which the server shall bind.

+ +

Type: +16 bit unsigned integer; between 0 and 65535 (both inclusive)

+ +

Example: +5901

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/wayvnc.nix> + +
+
+
+ + services.wayvnc.systemdTarget + + +
+
+

Systemd target to bind to.

+ +

Type: +string

+ +

Default: +config.wayland.systemd.target

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/wayvnc.nix> + +
+
services.wlsunset.enable