forked from extern/nix-config
43a07cc8d9
Neither nixfmt nor alejandra support the "standard" way to syntax highlight multi-line strings in Nix, so nixpkgs-fmt is the only viable solution.
10 lines
191 B
Nix
10 lines
191 B
Nix
{
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
kitty = prev.kitty.overrideAttrs (old: {
|
|
patches = (old.patches or [ ]) ++ [ ./fix-duplicate-lines.patch ];
|
|
});
|
|
})
|
|
];
|
|
}
|