host(bocchi): make nix store pubkey accessible

Changed files
+7
systems
bocchi
services
+7
systems/bocchi/services/hydra.nix
···
port = 3000;
extraConfig = {
useACMEHost = "bocchi.c.soopy.moe";
};
};
}
···
port = 3000;
extraConfig = {
useACMEHost = "bocchi.c.soopy.moe";
+
+
locations."= /pubkey" = {
+
extraConfig = ''
+
add_header content-type text/plain always;
+
'';
+
return = "200 hydra.soopy.moe:IZ/bZ1XO3IfGtq66g+C85fxU/61tgXLaJ2MlcGGXU8Q=";
+
};
};
};
}