infrastructure/nixos/pkgs/default.nix

27 lines
661 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-09-10 19:50:08 +02:00
discord-canary = prev.discord-canary.override { withOpenASAR = true; };
2022-08-20 13:54:45 +02:00
2022-08-29 22:05:10 +02:00
catppuccin.cursors = prev.callPackage ./catppuccin/cursors { };
2022-09-10 16:21:21 +02:00
vmagent = prev.callPackage ./vmagent { };
2022-09-10 15:10:01 +02:00
2021-11-21 21:56:17 +01:00
v = {
2022-09-10 15:10:01 +02:00
glitch-soc = prev.callPackage ./glitch-soc { };
2022-09-10 15:14:57 +02:00
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
};
}