Set default session on hypnos
Some checks failed
Check flake / build-amd64-linux (push) Failing after 1m24s

This commit is contained in:
Jordan Holt 2024-06-29 16:06:08 +01:00
parent 696418b486
commit 5b1e5c7927
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520

View File

@ -15,11 +15,16 @@
networking.hostId = "cf791898";
# nvidia 470 driver doesn't work with Wayland
services.xserver = {
displayManager.gdm.wayland = lib.mkForce false;
videoDrivers = [ "nvidia" ];
services = {
xserver = {
displayManager.gdm.wayland = lib.mkForce false;
videoDrivers = [ "nvidia" ];
};
displayManager = {
defaultSession = "plasmax11";
sddm.wayland.enable = lib.mkForce false;
};
};
services.displayManager.sddm.wayland.enable = lib.mkForce false;
# Workaround for label rendering bug in GTK4 with nvidia 470 driver
environment.sessionVariables.GSK_RENDERER = "gl";