compton: adding missing xr_glx_hybrid backend

Compton can run with xr_glx_hybrid backend too.
Adding this missing option.
This commit is contained in:
Yell0w Ghost 2017-11-28 14:02:48 +01:00 committed by GitHub
parent ba3a792435
commit 57475d12ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>.
'';
};