feat(quiver): reposition URL comment in latex export

This commit is contained in:
2026-01-09 09:16:51 -07:00
parent ef695a7766
commit 72a39a80ae
3 changed files with 35 additions and 4 deletions

View File

@@ -4,12 +4,17 @@ let cfg = config.sydnix.deertopia.quiver;
in {
options.sydnix.deertopia.quiver = {
enable = lib.mkEnableOption "Quiver, a commutative diagram editor";
package = lib.mkPackageOption sydpkgs.packages.${system} "quiver" {};
};
config = lib.mkIf cfg.enable {
sydnix.deertopia.nginx.vhosts."q".vhost =
let
package = sydpkgs.packages.${system}.quiver;
package = cfg.package.overrideAttrs (finalAttrs: prevAttrs: {
patches = (prevAttrs.patches or []) ++ [
./quiver/move-export-url.patch
];
});
in {
forceSSL = true;
enableACME = true;