about summary refs log tree commit diff
path: root/nixos/modules/services/x11
diff options
context:
space:
mode:
authorYell0w Ghost <34014106+yellowgh0st@users.noreply.github.com>2017-11-28 14:02:48 +0100
committerGitHub <noreply@github.com>2017-11-28 14:02:48 +0100
commit57475d12adba623685ed0913784ea321bab123a4 (patch)
tree02c1fbe57337a72671850b44f86985760859dae7 /nixos/modules/services/x11
parentba3a792435ee13269d1da5997581454145e2d626 (diff)
downloadnixlib-57475d12adba623685ed0913784ea321bab123a4.tar
nixlib-57475d12adba623685ed0913784ea321bab123a4.tar.gz
nixlib-57475d12adba623685ed0913784ea321bab123a4.tar.bz2
nixlib-57475d12adba623685ed0913784ea321bab123a4.tar.lz
nixlib-57475d12adba623685ed0913784ea321bab123a4.tar.xz
nixlib-57475d12adba623685ed0913784ea321bab123a4.tar.zst
nixlib-57475d12adba623685ed0913784ea321bab123a4.zip
compton: adding missing xr_glx_hybrid backend
Compton can run with xr_glx_hybrid backend too.
Adding this missing option.
Diffstat (limited to 'nixos/modules/services/x11')
-rw-r--r--nixos/modules/services/x11/compton.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/x11/compton.nix b/nixos/modules/services/x11/compton.nix
index 11cbcac6fa85..8641c05de52e 100644
--- a/nixos/modules/services/x11/compton.nix
+++ b/nixos/modules/services/x11/compton.nix
@@ -181,10 +181,10 @@ in {
     };
 
     backend = mkOption {
-      type = types.enum [ "glx" "xrender" ];
+      type = types.enum [ "glx" "xrender" "xr_glx_hybrid" ];
       default = "xrender";
       description = ''
-        Backend to use: <literal>glx</literal> or <literal>xrender</literal>.
+        Backend to use: <literal>glx</literal>, <literal>xrender</literal> or <literal>xr_glx_hybrid</literal>.
       '';
     };