infrastructure/nixos/pkgs/default.nix
2022-08-20 13:54:45 +02:00

24 lines
528 B
Nix

final: prev: {
hedgedoc = prev.hedgedoc.overrideAttrs (old: {
# see https://github.com/NixOS/nixpkgs/issues/176127#issuecomment-1146782555
preBuild = ''
export HOME=$TMPDIR
'';
});
discord = prev.discord.override { withOpenASAR = true; };
vmagent = prev.callPackage ./vmagent { };
v = {
unbound = prev.unbound.override {
withSystemd = true;
withDoH = true;
withDNSCrypt = true;
withTFO = true;
};
gitea-agatheme = prev.callPackage ./gitea-agatheme { };
};
}