nix-config/overlays/hyprland.nix
Donovan Glover 1c1c666f57
overlays: Patch hyprland window sizes
Fixes an issue where 1 pixel gaps would exist where window sizes would
otherwise divide evenly.
2023-08-31 00:45:04 -04:00

11 lines
209 B
Nix

{
nixpkgs.overlays = [
(final: prev: {
hyprland = prev.hyprland.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [ ../patches/hyprland-window-sizes.patch ];
});
})
];
}