1
0
forked from extern/nix-config
donovanglover-nix-config/overlays/kitty/default.nix
Donovan Glover 43a07cc8d9
treewide: Switch from alejandra to nixpkgs-fmt
Neither nixfmt nor alejandra support the "standard" way to syntax
highlight multi-line strings in Nix, so nixpkgs-fmt is the only viable
solution.
2023-06-11 09:37:27 -04:00

10 lines
191 B
Nix

{
nixpkgs.overlays = [
(final: prev: {
kitty = prev.kitty.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [ ./fix-duplicate-lines.patch ];
});
})
];
}