mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 09:43:11 +01:00
374a7cbe19
This works however I prefer the current non-fading animations for now.
14 lines
283 B
Nix
14 lines
283 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
|
|
];
|
|
});
|
|
})
|
|
];
|
|
}
|
|
|