mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
1c1c666f57
Fixes an issue where 1 pixel gaps would exist where window sizes would otherwise divide evenly.
11 lines
209 B
Nix
11 lines
209 B
Nix
{
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
hyprland = prev.hyprland.overrideAttrs (old: {
|
|
patches = (old.patches or [ ]) ++ [ ../patches/hyprland-window-sizes.patch ];
|
|
});
|
|
})
|
|
];
|
|
}
|
|
|