mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-23 22:28:36 +01:00
ad377d14fa
Patches the issue described below: https://github.com/kovidgoyal/kitty/issues/6306
10 lines
188 B
Nix
10 lines
188 B
Nix
{
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
kitty = prev.kitty.overrideAttrs (old: {
|
|
patches = (old.patches or []) ++ [./fix-duplicate-lines.patch];
|
|
});
|
|
})
|
|
];
|
|
}
|