summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabián Heredia Montiel <fabianhjr@protonmail.com>2021-11-23 10:59:51 -0600
committerFabián Heredia Montiel <fabianhjr@protonmail.com>2021-11-23 12:17:05 -0600
commit539811a4d3c680c21a4d493e79048c5aea8fb8bf (patch)
treeba693a41e8450612fd0c9ecf59eef1699cac2626
parent9ef72b907ca9054bfe8205d839f2063901aca609 (diff)
downloadnixpkgs-539811a4d3c680c21a4d493e79048c5aea8fb8bf.tar
nixpkgs-539811a4d3c680c21a4d493e79048c5aea8fb8bf.tar.gz
nixpkgs-539811a4d3c680c21a4d493e79048c5aea8fb8bf.tar.bz2
nixpkgs-539811a4d3c680c21a4d493e79048c5aea8fb8bf.tar.lz
nixpkgs-539811a4d3c680c21a4d493e79048c5aea8fb8bf.tar.xz
nixpkgs-539811a4d3c680c21a4d493e79048c5aea8fb8bf.tar.zst
nixpkgs-539811a4d3c680c21a4d493e79048c5aea8fb8bf.zip
nixos/gdm: enable nvidiaWayland by default
-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 e036c684c88..6f0d645725e 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.