summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIcy-Thought <icy-thought@pm.me>2022-11-19 19:13:29 +0100
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2022-12-04 17:45:58 +0000
commitcf20894ab52fd0fcf4b4a32249d016c41ce6fb48 (patch)
treedd371e09d2d7cf142cf7fe45e0c8867a35bb4dc8
parentMerge pull request #204499 from NixOS/backport-204487-to-release-22.11 (diff)
downloadnixpkgs-cf20894ab52fd0fcf4b4a32249d016c41ce6fb48.tar.gz
nixos/picom: add `egl` backend to optionsorigin/backport-201949-to-release-22.11
(cherry picked from commit 2beff9375cda53f2ab42844eb85d9c60175f3434)
-rw-r--r--nixos/modules/services/x11/picom.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/x11/picom.nix b/nixos/modules/services/x11/picom.nix
index 56b55709e47f..4a0578de09cb 100644
--- a/nixos/modules/services/x11/picom.nix
+++ b/nixos/modules/services/x11/picom.nix
@@ -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`.
'';
};