snowflake/home/wayland/hyprland/config/plugins.nix
notohh 39ef00af7c
All checks were successful
ci/woodpecker/cron/flake-lock-update Pipeline was successful
hyprland: enable csgo plugin
2024-10-08 09:36:13 -04:00

19 lines
352 B
Nix

{
pkgs,
inputs,
...
}: {
wayland.windowManager.hyprland.plugins = [
inputs.hyprland-plugins.packages.${pkgs.system}.csgo-vulkan-fix
];
wayland.windowManager.hyprland.settings = {
plugin = {
csgo-vulkan-fix = {
res_w = 1280;
res_h = 1024;
class = "cs2";
fix_mouse = true;
};
};
};
}