nixfiles/hosts/raspberry/profiles/piped.nix

26 lines
493 B
Nix
Raw Normal View History

2023-09-14 19:44:27 +01:00
{
config,
pkgs,
...
}: {
config.services.piped = {
enable = true;
# Takes too much time to compile otherwise, idm extra bandwidth
proxyPackage =
(pkgs.piped-proxy.override {
withAVIF = false;
withWebP = false;
})
.overrideAttrs {
pname = "piped-proxy-debug";
doCheck = false;
buildType = "debug";
};
proxyDomain = "proxy.piped.owo.monster";
disableBackend = true;
disableFrontend = true;
};
}