This commit is contained in:
Vivian 2022-10-06 11:54:43 +02:00
parent 72f3a2ce63
commit 5076990d45
8 changed files with 2931 additions and 49 deletions

View file

@ -1,3 +1,4 @@
# nix-build -E 'with import <nixpkgs> {}; callPackage ./platformio.nix {}'
final: prev: {
catppuccin.cursors = prev.callPackage ./catppuccin/cursors { };
@ -6,6 +7,8 @@ final: prev: {
v = {
glitch-soc = prev.callPackage ./glitch-soc { };
deemix-gui = prev.callPackage ./deemix-gui { };
unbound = prev.unbound.override {
withSystemd = true;
withDoH = true;
@ -16,5 +19,9 @@ final: prev: {
dnd-5e-latex-template = prev.callPackage ./dnd-5e-latex-template { };
gitea-agatheme = prev.callPackage ./gitea-agatheme { };
vscode-extensions = {
platformio.platformio-ide = prev.callPackage ./vscode-extensions/platformio.nix { };
};
};
}