nixos/picom: add egl backend to options

This commit is contained in:
Icy-Thought 2022-11-19 19:13:29 +01:00
parent e9b195248c
commit 2beff9375c
No known key found for this signature in database
GPG Key ID: B593E438DDAB3C66

View File

@ -199,10 +199,10 @@ in {
};
backend = mkOption {
type = types.enum [ "glx" "xrender" "xr_glx_hybrid" ];
type = types.enum [ "egl" "glx" "xrender" "xr_glx_hybrid" ];
default = "xrender";
description = lib.mdDoc ''
Backend to use: `glx`, `xrender` or `xr_glx_hybrid`.
Backend to use: `egl`, `glx`, `xrender` or `xr_glx_hybrid`.
'';
};