0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

Merge pull request #147153 from LibreCybernetics/enable-nvidia-wayland-on-gdm-by-default

nixos/gdm: enable nvidiaWayland by default
This commit is contained in:
Kevin Cox 2021-11-29 17:15:06 -05:00 committed by GitHub
commit 2b35c41b81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,14 +83,14 @@ in
default = true; default = true;
description = '' description = ''
Allow GDM to run on Wayland instead of Xserver. Allow GDM to run on Wayland instead of Xserver.
Note to enable Wayland with Nvidia you need to Note to enable Wayland with Nvidia the <option>nvidiaWayland</option>
enable the <option>nvidiaWayland</option>. must not be disabled.
''; '';
}; };
nvidiaWayland = mkOption { nvidiaWayland = mkOption {
type = types.bool; type = types.bool;
default = false; default = true;
description = '' description = ''
Whether to allow wayland to be used with the proprietary Whether to allow wayland to be used with the proprietary
NVidia graphics driver. NVidia graphics driver.