Add lime configuration #10

Merged
riley merged 10 commits from add-lime into mistress 2023-06-17 13:40:14 +02:00
2 changed files with 10 additions and 6 deletions
Showing only changes of commit 3cef5b6f97 - Show all commits

View file

@ -53,12 +53,6 @@ in with lib; {
# This is all required to get it to not die. # This is all required to get it to not die.
enable = true; enable = true;
wrapperFeatures.gtk = true; wrapperFeatures.gtk = true;
extraSessionCommands = ''
#export WLR_NO_HARDWARE_CURSORS=1;
#export WLR_RENDERER=vulkan;
#export WLR_EGL_NO_MODIFIERS=1;
'';
#extraOptions = [ "--unsupported-gpu" ];
systemdIntegration = true; systemdIntegration = true;
extraConfig = '' extraConfig = ''

View file

@ -7,4 +7,14 @@
network.eth = "enp9s0"; network.eth = "enp9s0";
}; };
}; };
# Due to Hardware :tm: this is needed to get sway to not crash
wayland.windowManager.sway = {
extraSessionCommands = ''
export WLR_NO_HARDWARE_CURSORS=1;
export WLR_RENDERER=vulkan;
export WLR_EGL_NO_MODIFIERS=1;
'';
extraOptions = [ "--unsupported-gpu" ];
};
} }