notohh
39ef00af7c
All checks were successful
ci/woodpecker/cron/flake-lock-update Pipeline was successful
19 lines
352 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|