typioca: 2.7.0 -> 2.8.0
[NixPkgs.git] / nixos / modules / programs / turbovnc.nix
blob511b6badc041764278abd0b9886827f36188c514
1 # Global configuration for the SSH client.
3 { config, lib, pkgs, ... }:
5 with lib;
7 let
8   cfg = config.programs.turbovnc;
9 in
11   options = {
13     programs.turbovnc = {
15       ensureHeadlessSoftwareOpenGL = mkOption {
16         type = types.bool;
17         default = false;
18         description = lib.mdDoc ''
19           Whether to set up NixOS such that TurboVNC's built-in software OpenGL
20           implementation works.
22           This will enable {option}`hardware.opengl.enable` so that OpenGL
23           programs can find Mesa's llvmpipe drivers.
25           Setting this option to `false` does not mean that software
26           OpenGL won't work; it may still work depending on your system
27           configuration.
29           This option is also intended to generate warnings if you are using some
30           configuration that's incompatible with using headless software OpenGL
31           in TurboVNC.
32         '';
33       };
35     };
37   };
39   config = mkIf cfg.ensureHeadlessSoftwareOpenGL {
41     # TurboVNC has builtin support for Mesa llvmpipe's `swrast`
42     # software rendering to implement GLX (OpenGL on Xorg).
43     # However, just building TurboVNC with support for that is not enough
44     # (it only takes care of the X server side part of OpenGL);
45     # the indiviudual applications (e.g. `glxgears`) also need to directly load
46     # the OpenGL libs.
47     # Thus, this creates `/run/opengl-driver` populated by Mesa so that the applications
48     # can find the llvmpipe `swrast.so` software rendering DRI lib via `libglvnd`.
49     # This comment exists to explain why `hardware.` is involved,
50     # even though 100% software rendering is used.
51     hardware.opengl.enable = true;
53   };