Hey there. When I start sway from the tty via the command sway
, I get a couple of errors:
EGL_EXT_platform_base not supported
Failed to create EGL context
Could not initialize EGL
Could not initialize renderer
Failed to create renderer
Here is my configuration:
security.polkit.enable = true;
home-manager.users.mikkel = { pkgs, ... }: {
wayland.windowManager.sway = {
enable = true;
config = {
modifier = "Mod1";
terminal = "alacritty";
output = {
DP-1 = {
res = "1920x1080@144.000Hz";
};
DP-2 = {
res = "1920x1080@144.000Hz";
};
};
};
};
Does anyone have an idea why this is and how to quickly fix it? When I enable sway
on the system level + on home-manager, everything works. However, I would like to ONLY use home-manager.
(I do not have any NVIDIA hardware components, I have an AMD GPU and CPU).