We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc58f5c commit 63c1247Copy full SHA for 63c1247
modules/wsl-conf.nix
@@ -14,6 +14,14 @@ with lib; {
14
default = true;
15
description = "Automatically mount windows drives under ${config.wsl.wslConf.automount.root}";
16
};
17
+ ldconfig = mkOption {
18
+ type = bool;
19
+ default = false;
20
+ description = ''
21
+ Wether to modify `/etc/ld.so.conf.d/ld.wsl.conf` to load OpenGL drivers provided by the Windows host in `/usr/lib/wsl/lib` with `/sbin/ldconfig`.
22
+ This way of providing OpenGL drivers does not work with NixOS and `wsl.useWindowsDriver` should be used instead.
23
+ '';
24
+ };
25
mountFsTab = mkOption {
26
type = bool;
27
default = false;
0 commit comments