infrastructure/nixos/pkgs/default.nix

21 lines
473 B
Nix
Raw Normal View History

2021-11-21 21:56:17 +01:00
final: prev: {
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-09-24 13:57:01 +02:00
2022-09-28 14:43:39 +02:00
dnd-5e-latex-template = prev.callPackage ./dnd-5e-latex-template { };
2022-07-31 16:12:03 +02:00
gitea-agatheme = prev.callPackage ./gitea-agatheme { };
2021-11-21 21:56:17 +01:00
};
}