mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-23 06:08:35 +01:00
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
190 B
Nix
10 lines
190 B
Nix
{
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
alejandra = prev.alejandra.overrideAttrs (old: {
|
|
patches = (old.patches or [ ]) ++ [ ./remove-ads.patch ];
|
|
});
|
|
})
|
|
];
|
|
}
|