forked from extern/nix-config
9f09751a8f
This didn't actually fix things.
10 lines
203 B
Nix
10 lines
203 B
Nix
{
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
zola = prev.zola.overrideAttrs (oldAttrs: {
|
|
patches = (oldAttrs.patches or [ ]) ++ [ ../patches/zola-serve-fix.patch ];
|
|
});
|
|
})
|
|
];
|
|
}
|