forked from nhost/nhost
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
416 lines (371 loc) · 11.4 KB
/
Copy pathflake.nix
File metadata and controls
416 lines (371 loc) · 11.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
{
nixConfig = {
sandbox = "relaxed";
extra-substituters = [
"s3://nhost-nix-cache?endpoint=https://14bc02755b64adb7c8c62b5420d0a457.eu.r2.cloudflarestorage.com®ion=auto&profile=nhost-nix-cache"
"https://cache.nixos.org"
];
extra-trusted-public-keys = [
"nhost-nix-cache:6bHlSIHLl5ubPXXS0EGgrvEQTyQnc+L05/6vShe/B6g="
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
];
};
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
nix2container.url = "github:nlewo/nix2container";
nix2container.inputs.nixpkgs.follows = "nixpkgs";
};
# asdasdasd
outputs =
{
self,
nixpkgs,
flake-utils,
nix2container,
}:
{
#nixops
lib = import ./nixops/lib/lib.nix;
overlays.default = import ./nixops/overlays/default.nix;
}
// flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [
(import ./nixops/overlays/default.nix)
];
};
nix2containerPkgs = nix2container.packages.${system};
nixops-lib = (import ./nixops/lib/lib.nix) { inherit pkgs nix2containerPkgs; };
authf = import ./services/auth/project.nix {
inherit
self
pkgs
nixops-lib
;
};
clif = import ./cli/project.nix {
inherit
self
pkgs
nixops-lib
;
};
codegenf = import ./tools/codegen/project.nix {
inherit
self
pkgs
nixops-lib
;
};
constellationf = import ./services/constellation/project.nix {
inherit
self
pkgs
nixops-lib
;
};
ghactivityf = import ./tools/ghactivity/project.nix {
inherit
self
pkgs
nixops-lib
;
};
govulncheck-wrapperf = import ./tools/govulncheck-wrapper/project.nix {
inherit
self
pkgs
nixops-lib
;
};
dashboardf = import ./dashboard/project.nix {
inherit
self
pkgs
nixops-lib
nix2containerPkgs
;
};
demosf = import ./examples/demos/project.nix {
inherit
self
pkgs
nixops-lib
nix2containerPkgs
;
};
functionsf = import ./services/functions/project.nix {
inherit
self
pkgs
nix2containerPkgs
nixops-lib
;
};
docsf = import ./docs/project.nix {
inherit
self
pkgs
nixops-lib
;
};
guidesf = import ./examples/guides/project.nix {
inherit
self
pkgs
nixops-lib
nix2containerPkgs
;
};
mcpf = import ./services/mcp/project.nix {
inherit
self
pkgs
nixops-lib
;
};
nhost-jsf = import ./packages/nhost-js/project.nix {
inherit
self
pkgs
nixops-lib
;
};
stripe-graphql-jsf = import ./packages/stripe-graphql-js/project.nix {
inherit
self
pkgs
nixops-lib
;
};
nixopsf = import ./nixops/project.nix {
inherit
pkgs
nix2containerPkgs
nixops-lib
;
};
postgresf = import ./services/postgres/project.nix {
inherit
self
pkgs
nixops-lib
nix2containerPkgs
;
};
nhostclientf = import ./internal/lib/nhostclient/project.nix {
inherit
self
pkgs
nixops-lib
;
};
storagef = import ./services/storage/project.nix {
inherit
self
pkgs
nixops-lib
;
};
tutorialsf = import ./examples/tutorials/project.nix {
inherit
self
pkgs
nixops-lib
nix2containerPkgs
;
};
in
{
checks = {
auth = authf.check;
cli = clif.check;
codegen = codegenf.check;
constellation = constellationf.check;
ghactivity = ghactivityf.check;
govulncheck-wrapper = govulncheck-wrapperf.check;
dashboard = dashboardf.check;
demos = demosf.check;
functions = functionsf.check;
guides = guidesf.check;
docs = docsf.check;
mcp = mcpf.check;
nhostclient = nhostclientf.check;
nhost-js = nhost-jsf.check;
stripe-graphql-js = stripe-graphql-jsf.check;
nixops = nixopsf.check;
postgres = postgresf.check;
storage = storagef.check;
tutorials = tutorialsf.check;
};
devShells = flake-utils.lib.flattenTree {
default = pkgs.mkShell {
buildInputs = with pkgs; [
# general
gh
git-cliff
gnused
skopeo
# cli
nhost.certbot-full
python312Packages.certbot-dns-route53
nhost.nhost-cli
# dashboard
nhost.vercel
playwright-driver
lychee
# javascript
nhost.nodejs
nhost.pnpm
nhost.biome
# go
nhost.go
nhost.golines
gofumpt
nhost.golangci-lint
nhost.gqlgen
nhost.gqlgenc
nhost.oapi-codegen
mockgen
nhost.sqlc
vacuum-go
nhost.govulncheck
# others
nhost.postgresql_18-client
bun
nhost.pi-agent
# docs
vale
# nix
nixfmt
# storate
clang
pkg-config
storagef.vips
# internal packages
self.packages.${system}.codegen
self.packages.${system}.ghactivity
self.packages.${system}.govulncheck-wrapper
];
shellHook = ''
export PLAYWRIGHT_BROWSERS_PATH=${pkgs.playwright-driver.browsers}
export PLAYWRIGHT_SKIP_VALIDATE_HOST_REQUIREMENTS=true
export GOEXPERIMENT=jsonv2
'';
};
cliff = pkgs.mkShell {
buildInputs = with pkgs; [
git-cliff
];
};
pnpm = pkgs.mkShell {
buildInputs = with pkgs; [
nhost.nodejs
nhost.pnpm
];
};
security-updates = pkgs.mkShell {
buildInputs = with pkgs; [
# pnpm audit --fix=update
nhost.nodejs
nhost.pnpm
# govulncheck-wrapper -fix → go get / go mod tidy / go mod vendor
nhost.go
nhost.govulncheck
self.packages.${system}.govulncheck-wrapper
];
shellHook = ''
export GOEXPERIMENT=jsonv2
'';
};
skopeo = pkgs.mkShell {
buildInputs = with pkgs; [
skopeo
];
};
vercel = pkgs.mkShell {
buildInputs = with pkgs; [
nhost.pnpm
nhost.nodejs
nhost.vercel
];
};
auth = authf.devShell;
cli = clif.devShell;
codegen = codegenf.devShell;
constellation = constellationf.devShell;
ghactivity = ghactivityf.devShell;
govulncheck-wrapper = govulncheck-wrapperf.devShell;
dashboard = dashboardf.devShell;
demos = demosf.devShell;
guides = guidesf.devShell;
docs = docsf.devShell;
functions = functionsf.devShell;
mcp = mcpf.devShell;
nhostclient = nhostclientf.devShell;
nhost-js = nhost-jsf.devShell;
stripe-graphql-js = stripe-graphql-jsf.devShell;
nixops = nixopsf.devShell;
postgres = postgresf.devShell;
storage = storagef.devShell;
tutorials = tutorialsf.devShell;
};
packages = flake-utils.lib.flattenTree {
auth = authf.package;
auth-docker-image = authf.dockerImage;
cli = clif.package;
cli-multiplatform = clif.cli-multiplatform;
cli-docker-image = clif.dockerImage;
codegen = codegenf.package;
constellation = constellationf.package;
constellation-docker-image = constellationf.dockerImage;
ghactivity = ghactivityf.package;
govulncheck-wrapper = govulncheck-wrapperf.package;
dashboard = dashboardf.package;
dashboard-docker-image = dashboardf.dockerImage;
dashboard-e2e-staging-main = dashboardf.check-staging-main;
dashboard-e2e-staging-onboarding = dashboardf.check-staging-onboarding;
dashboard-e2e-staging-local = dashboardf.check-staging-local;
dashboard-vercel-build-preview = dashboardf.vercelBuildPreview;
dashboard-vercel-deploy-preview = dashboardf.vercelDeployPreview;
dashboard-vercel-build-production = dashboardf.vercelBuildProduction;
dashboard-vercel-deploy-production = dashboardf.vercelDeployProduction;
demos = demosf.package;
functions = functionsf.package;
functions-node22-docker-image = functionsf.node22DockerImage;
functions-node24-docker-image = functionsf.node24DockerImage;
guides = guidesf.package;
docs-vercel-build-preview = docsf.vercelBuildPreview;
docs-vercel-deploy-preview = docsf.vercelDeployPreview;
docs-vercel-build-production = docsf.vercelBuildProduction;
docs-vercel-deploy-production = docsf.vercelDeployProduction;
nhost-js = nhost-jsf.package;
stripe-graphql-js = stripe-graphql-jsf.package;
mcp = mcpf.package;
mcp-docker-image = mcpf.dockerImage;
nixops = nixopsf.package;
nixops-docker-image = nixopsf.dockerImage;
pi-agent = pkgs.nhost.pi-agent;
postgres-pg16 = postgresf.packages.pg16-package;
postgres-pg16-docker-image = postgresf.packages.pg16-docker-image;
postgres-pg16-as-dir = postgresf.packages.pg16-as-dir;
postgres-pg17 = postgresf.packages.pg17-package;
postgres-pg17-docker-image = postgresf.packages.pg17-docker-image;
postgres-pg17-as-dir = postgresf.packages.pg17-as-dir;
postgres-pg18 = postgresf.packages.pg18-package;
postgres-pg18-docker-image = postgresf.packages.pg18-docker-image;
postgres-pg18-as-dir = postgresf.packages.pg18-as-dir;
storage = storagef.package;
storage-docker-image = storagef.dockerImage;
storage-vips = storagef.vips;
clamav-docker-image = storagef.clamav-docker-image;
tutorials = tutorialsf.package;
};
}
);
}