mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-09 01:44:15 +01:00
13 lines
282 B
Nix
13 lines
282 B
Nix
{
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
hyprland = prev.hyprland.overrideAttrs (old: {
|
|
patches = (old.patches or [ ]) ++ [
|
|
../patches/hyprland-window-sizes.patch
|
|
../patches/hyprland-slidefade-animation.patch
|
|
];
|
|
});
|
|
})
|
|
];
|
|
}
|