2014-01-15 14:08:45 +01:00
|
|
|
{ config, pkgs, pkgs_i686, ... }:
|
|
|
|
let
|
2014-01-15 21:15:16 +01:00
|
|
|
inherit (pkgs.lib) mkOption types mkIf optional optionals elem optionalString optionalAttrs;
|
2014-01-15 14:08:45 +01:00
|
|
|
|
2014-02-08 20:45:28 +01:00
|
|
|
cfg = config.hardware.opengl;
|
2014-01-15 14:08:45 +01:00
|
|
|
|
|
|
|
kernelPackages = config.boot.kernelPackages;
|
|
|
|
in {
|
|
|
|
options = {
|
2014-02-08 20:45:28 +01:00
|
|
|
hardware.opengl.enable = mkOption {
|
|
|
|
description = "Whether this configuration requires opengl.";
|
2014-01-15 14:08:45 +01:00
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
internal = true;
|
|
|
|
};
|
|
|
|
|
2014-02-08 20:45:28 +01:00
|
|
|
hardware.opengl.driSupport = mkOption {
|
2014-01-15 14:08:45 +01:00
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Whether to enable accelerated OpenGL rendering through the
|
|
|
|
Direct Rendering Interface (DRI).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-02-08 20:45:28 +01:00
|
|
|
hardware.opengl.driSupport32Bit = mkOption {
|
2014-01-15 14:08:45 +01:00
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
On 64-bit systems, whether to support Direct Rendering for
|
|
|
|
32-bit applications (such as Wine). This is currently only
|
|
|
|
supported for the <literal>nvidia</literal> driver and for
|
2014-02-08 20:45:28 +01:00
|
|
|
<literal>Mesa</literal>.
|
2014-01-15 14:08:45 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-02-08 20:45:28 +01:00
|
|
|
hardware.opengl.s3tcSupport = mkOption {
|
2014-01-15 14:08:45 +01:00
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Make S3TC(S3 Texture Compression) via libtxc_dxtn available
|
|
|
|
to OpenGL drivers. It is essential for many games to work
|
|
|
|
with FOSS GPU drivers.
|
|
|
|
|
|
|
|
Using this library may require a patent license depending on your location.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-02-08 20:45:28 +01:00
|
|
|
hardware.opengl.videoDrivers = mkOption {
|
2014-01-15 14:08:45 +01:00
|
|
|
type = types.listOf types.str;
|
|
|
|
# !!! We'd like "nv" here, but it segfaults the X server.
|
|
|
|
default = [ "ati" "cirrus" "intel" "vesa" "vmware" ];
|
|
|
|
example = [ "vesa" ];
|
|
|
|
description = ''
|
2014-02-08 20:45:28 +01:00
|
|
|
The names of the opengl video drivers the configuration
|
|
|
|
supports. They will be tried in order until one that
|
|
|
|
supports your card is found.
|
2014-01-15 14:08:45 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2014-02-05 19:16:15 +01:00
|
|
|
assertions = pkgs.lib.singleton {
|
|
|
|
assertion = cfg.driSupport32Bit -> pkgs.stdenv.isx86_64;
|
|
|
|
message = "Option driSupport32Bit only makes sens on a 64-bit system.";
|
|
|
|
};
|
|
|
|
|
2014-01-15 14:08:45 +01:00
|
|
|
system.activationScripts.setup-opengl.deps = [];
|
|
|
|
system.activationScripts.setup-opengl.text = ''
|
|
|
|
rm -f /run/opengl-driver{,-32}
|
2014-02-05 19:16:15 +01:00
|
|
|
${optionalString (pkgs.stdenv.isi686) "ln -sf opengl-driver /run/opengl-driver-32"}
|
|
|
|
''
|
|
|
|
#TODO: The OpenGL driver should depend on what's detected at runtime.
|
|
|
|
+( if elem "nvidia" cfg.videoDrivers then
|
2014-01-15 14:08:45 +01:00
|
|
|
''
|
|
|
|
ln -sf ${kernelPackages.nvidia_x11} /run/opengl-driver
|
|
|
|
${optionalString cfg.driSupport32Bit
|
|
|
|
"ln -sf ${pkgs_i686.linuxPackages.nvidia_x11.override { libsOnly = true; kernel = null; } } /run/opengl-driver-32"}
|
|
|
|
''
|
|
|
|
else if elem "nvidiaLegacy173" cfg.videoDrivers then
|
|
|
|
"ln -sf ${kernelPackages.nvidia_x11_legacy173} /run/opengl-driver"
|
|
|
|
else if elem "nvidiaLegacy304" cfg.videoDrivers then
|
|
|
|
''
|
|
|
|
ln -sf ${kernelPackages.nvidia_x11_legacy304} /run/opengl-driver
|
|
|
|
${optionalString cfg.driSupport32Bit
|
|
|
|
"ln -sf ${pkgs_i686.linuxPackages.nvidia_x11_legacy304.override { libsOnly = true; kernel = null; } } /run/opengl-driver-32"}
|
|
|
|
''
|
|
|
|
else if elem "ati_unfree" cfg.videoDrivers then
|
|
|
|
"ln -sf ${kernelPackages.ati_drivers_x11} /run/opengl-driver"
|
|
|
|
else
|
|
|
|
''
|
|
|
|
${optionalString cfg.driSupport "ln -sf ${pkgs.mesa_drivers} /run/opengl-driver"}
|
|
|
|
${optionalString cfg.driSupport32Bit
|
|
|
|
"ln -sf ${pkgs_i686.mesa_drivers} /run/opengl-driver-32"}
|
|
|
|
''
|
2014-02-05 19:16:15 +01:00
|
|
|
);
|
2014-01-15 14:08:45 +01:00
|
|
|
|
|
|
|
environment.variables.LD_LIBRARY_PATH =
|
|
|
|
[ "/run/opengl-driver/lib" "/run/opengl-driver-32/lib" ]
|
|
|
|
++ optional cfg.s3tcSupport "${pkgs.libtxc_dxtn}/lib"
|
|
|
|
++ optional (cfg.s3tcSupport && cfg.driSupport32Bit) "${pkgs_i686.libtxc_dxtn}/lib";
|
|
|
|
|
|
|
|
boot.extraModulePackages =
|
|
|
|
optional (elem "nvidia" cfg.videoDrivers) kernelPackages.nvidia_x11 ++
|
|
|
|
optional (elem "nvidiaLegacy173" cfg.videoDrivers) kernelPackages.nvidia_x11_legacy173 ++
|
|
|
|
optional (elem "nvidiaLegacy304" cfg.videoDrivers) kernelPackages.nvidia_x11_legacy304 ++
|
|
|
|
optional (elem "virtualbox" cfg.videoDrivers) kernelPackages.virtualboxGuestAdditions ++
|
|
|
|
optional (elem "ati_unfree" cfg.videoDrivers) kernelPackages.ati_drivers_x11;
|
|
|
|
|
|
|
|
boot.blacklistedKernelModules =
|
|
|
|
optionals (elem "nvidia" cfg.videoDrivers) [ "nouveau" "nvidiafb" ];
|
|
|
|
|
2014-01-15 21:15:16 +01:00
|
|
|
environment.etc = (optionalAttrs (elem "ati_unfree" cfg.videoDrivers) {
|
|
|
|
"ati".source = "${kernelPackages.ati_drivers_x11}/etc/ati";
|
|
|
|
})
|
|
|
|
// (optionalAttrs (elem "nvidia" cfg.videoDrivers) {
|
|
|
|
"OpenCL/vendors/nvidia.icd".source = "${kernelPackages.nvidia_x11}/lib/vendors/nvidia.icd";
|
|
|
|
});
|
2014-01-15 14:08:45 +01:00
|
|
|
};
|
|
|
|
}
|