Nix: run formatter

This commit is contained in:
Toast 2025-01-31 13:11:00 +01:00
parent fbaed2c1d6
commit 98f4e451a9
2 changed files with 6 additions and 6 deletions

View file

@ -14,7 +14,7 @@
}; };
packages = rec { packages = rec {
default = shows-api; default = shows-api;
shows-api = pkgs.callPackage ./package.nix {}; shows-api = pkgs.callPackage ./package.nix { };
}; };
} }
); );

View file

@ -1,7 +1,7 @@
{ { lib
lib, , buildNpmPackage
buildNpmPackage, , nodejs
nodejs, ,
}: }:
buildNpmPackage { buildNpmPackage {
name = "shows-api"; name = "shows-api";
@ -28,7 +28,7 @@ buildNpmPackage {
meta = { meta = {
description = "NestJS API to store info about shows on a MongoDB database"; description = "NestJS API to store info about shows on a MongoDB database";
homepage = "https://git.everest.tailscale/Toast/shows-api"; homepage = "https://git.everest.tailscale/Toast/shows-api";
sourceProvenance = [lib.sourceTypes.fromSource]; sourceProvenance = [ lib.sourceTypes.fromSource ];
mainProgram = "shows-api"; mainProgram = "shows-api";
}; };
} }