mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
[Hardware/Nvidia/Proprietary]: only disable Wayland by default if no Intel GPU is present.
Ideally, we should check wether any other GPU with open-source drivers is present.
This commit is contained in:
parent
2124e42b12
commit
4500c8d887
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@ in {
|
|||
|
||||
services.xserver.exportConfiguration = true;
|
||||
|
||||
services.xserver.displayManager.sddm.wayland.enable = false; # Frequent issues with Nvidia GPUs
|
||||
services.xserver.displayManager.sddm.wayland.enable = mkIf (!config.aviallon.hardware.intel.enable) (mkDefault false); # Frequent issues with Nvidia GPUs
|
||||
|
||||
# Fix hybrid sleep with Nvidia GPU
|
||||
systemd.services.nvidia-suspend = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue