Switch to vulkan renderer for sway.

This commit is contained in:
Tom Alexander 2024-12-20 22:45:09 -05:00
parent e26118af4f
commit 54c8459fa1
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -220,7 +220,8 @@ in
]; ];
environment.sessionVariables = { environment.sessionVariables = {
WLR_RENDERER_ALLOW_SOFTWARE = "1"; # WLR_RENDERER_ALLOW_SOFTWARE = "1";
WLR_RENDERER = "vulkan";
}; };
programs.sway = { programs.sway = {
@ -230,7 +231,7 @@ in
"--debug" "--debug"
"--config" "--config"
"${sway-config}" "${sway-config}"
"--unsupported-gpu" # "--unsupported-gpu"
]; ];
}; };