infrastructure/nixos/pkgs/default.nix

24 lines
528 B
Nix
Raw Normal View History

2021-11-21 21:56:17 +01:00
final: prev: {
2022-06-07 23:57:57 +02:00
hedgedoc = prev.hedgedoc.overrideAttrs (old: {
# see https://github.com/NixOS/nixpkgs/issues/176127#issuecomment-1146782555
preBuild = ''
export HOME=$TMPDIR
'';
});
2022-08-20 13:54:45 +02:00
discord = prev.discord.override { withOpenASAR = true; };
2022-07-29 13:02:03 +02:00
vmagent = prev.callPackage ./vmagent { };
2021-11-21 21:56:17 +01:00
v = {
unbound = prev.unbound.override {
withSystemd = true;
withDoH = true;
withDNSCrypt = true;
withTFO = true;
};
2022-07-31 16:12:03 +02:00
gitea-agatheme = prev.callPackage ./gitea-agatheme { };
2021-11-21 21:56:17 +01:00
};
}