about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorKevin Cox <kevincox@kevincox.ca>2021-11-29 17:15:06 -0500
committerGitHub <noreply@github.com>2021-11-29 17:15:06 -0500
commit2b35c41b8138b35e60df79f171fe0028104bab84 (patch)
treedce722def580a5ed3afca94d0f164a3541c82b85 /nixos/modules
parent42d4221495730456e0af1307ce4ad5c1cb578535 (diff)
parent539811a4d3c680c21a4d493e79048c5aea8fb8bf (diff)
downloadnixlib-2b35c41b8138b35e60df79f171fe0028104bab84.tar
nixlib-2b35c41b8138b35e60df79f171fe0028104bab84.tar.gz
nixlib-2b35c41b8138b35e60df79f171fe0028104bab84.tar.bz2
nixlib-2b35c41b8138b35e60df79f171fe0028104bab84.tar.lz
nixlib-2b35c41b8138b35e60df79f171fe0028104bab84.tar.xz
nixlib-2b35c41b8138b35e60df79f171fe0028104bab84.tar.zst
nixlib-2b35c41b8138b35e60df79f171fe0028104bab84.zip
Merge pull request #147153 from LibreCybernetics/enable-nvidia-wayland-on-gdm-by-default
nixos/gdm: enable nvidiaWayland by default
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/x11/display-managers/gdm.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/x11/display-managers/gdm.nix b/nixos/modules/services/x11/display-managers/gdm.nix
index e036c684c886..6f0d645725e9 100644
--- a/nixos/modules/services/x11/display-managers/gdm.nix
+++ b/nixos/modules/services/x11/display-managers/gdm.nix
@@ -83,14 +83,14 @@ in
         default = true;
         description = ''
           Allow GDM to run on Wayland instead of Xserver.
-          Note to enable Wayland with Nvidia you need to
-          enable the <option>nvidiaWayland</option>.
+          Note to enable Wayland with Nvidia the <option>nvidiaWayland</option>
+          must not be disabled.
         '';
       };
 
       nvidiaWayland = mkOption {
         type = types.bool;
-        default = false;
+        default = true;
         description = ''
           Whether to allow wayland to be used with the proprietary
           NVidia graphics driver.