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: glx or xrender.
+ Backend to use: glx, xrender or xr_glx_hybrid.
'';
};