snowflake/home/wayland/hyprland/config/plugins.nix

20 lines
352 B
Nix
Raw Normal View History

2024-04-22 16:16:03 -04:00
{
pkgs,
inputs,
...
}: {
2024-10-08 09:36:13 -04:00
wayland.windowManager.hyprland.plugins = [
inputs.hyprland-plugins.packages.${pkgs.system}.csgo-vulkan-fix
];
2024-04-22 16:16:03 -04:00
wayland.windowManager.hyprland.settings = {
plugin = {
2024-10-08 09:36:13 -04:00
csgo-vulkan-fix = {
res_w = 1280;
res_h = 1024;
class = "cs2";
fix_mouse = true;
2024-04-22 16:16:03 -04:00
};
};
};
}