Add matrix-hookshot patch for parsing atom feeds with multiple links

This commit is contained in:
Charlotte Van Petegem 2023-06-17 19:05:26 +02:00
parent 836318ff5a
commit 94a55faed7
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 34 additions and 0 deletions

View file

@ -7,6 +7,14 @@
};
config = lib.mkIf config.chvp.services.matrix.enable {
nixpkgs.overlays = [
(self: super: {
matrix-hookshot = super.matrix-hookshot.overrideAttrs (old: {
patches = (old.patches or []) ++ [ ./hookshot-atom-links.patch ];
});
})
];
chvp.base.zfs.systemLinks = [{ path = "/var/lib/matrix-hookshot"; type = "data"; }];
chvp.services.nginx.hosts = [{
fqdn = "matrix.vanpetegem.me";