summary refs log tree commit diff
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2017-10-16 23:54:10 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2017-10-17 00:50:34 +0200
commit3918385f29e01e0f17eaf074d4832af581e8e687 (patch)
tree734e2c0e51655af5056fc79563671a6580b5bce1
parent36bbc3cfda6ca2fa4e9dee29cda925c966cda03b (diff)
downloadnixlib-3918385f29e01e0f17eaf074d4832af581e8e687.tar
nixlib-3918385f29e01e0f17eaf074d4832af581e8e687.tar.gz
nixlib-3918385f29e01e0f17eaf074d4832af581e8e687.tar.bz2
nixlib-3918385f29e01e0f17eaf074d4832af581e8e687.tar.lz
nixlib-3918385f29e01e0f17eaf074d4832af581e8e687.tar.xz
nixlib-3918385f29e01e0f17eaf074d4832af581e8e687.tar.zst
nixlib-3918385f29e01e0f17eaf074d4832af581e8e687.zip
nixos/compton: use xrender by default
-rw-r--r--nixos/modules/services/x11/compton.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/compton.nix b/nixos/modules/services/x11/compton.nix
index fcccf98c9cff..8701354b5285 100644
--- a/nixos/modules/services/x11/compton.nix
+++ b/nixos/modules/services/x11/compton.nix
@@ -182,7 +182,7 @@ in {
 
     backend = mkOption {
       type = types.enum [ "glx" "xrender" ];
-      default = "glx";
+      default = "xrender";
       description = ''
         Backend to use: <literal>glx</literal> or <literal>xrender</literal>.
       '';