infrastructure/nixos/pkgs/default.nix
2022-09-24 16:19:37 +02:00

25 lines
598 B
Nix

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