infrastructure/nixos/pkgs/default.nix

24 lines
704 B
Nix
Raw Normal View History

2022-10-30 19:52:03 +01:00
# nix-build -E 'with import <nixpkgs> {}; callPackage ./default.nix {}'
2021-11-21 21:56:17 +01:00
final: prev: {
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 { };
2022-10-06 11:54:43 +02:00
2022-10-31 23:14:35 +01:00
# nix-shell -p "(vscode-with-extensions.override {vscodeExtensions = with vscode-extensions; [ jnoortheen.nix-ide ]; })" -I nixpkgs=.
2022-10-06 11:54:43 +02:00
vscode-extensions = {
platformio.platformio-ide =
prev.callPackage ./vscode-extensions/platformio.nix { };
2022-10-06 11:54:43 +02:00
};
2021-11-21 21:56:17 +01:00
};
}