-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
data.yml
1254 lines (1247 loc) · 54.1 KB
/
data.yml
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# SPDX-FileCopyrightText: 2023 Christina Sørensen
# SPDX-FileContributor: Christina Sørensen
#
# SPDX-License-Identifier: AGPL-3.0-only
landscape:
- category:
name: Flakes
subcategories:
- subcategory:
name: Flake Versioning
items:
- item:
description: Nix Flake Input Versioning
homepage_url: https://rime.cx
logo: rime_logo.png
name: RIME
project: community
repo_url: https://github.com/cafkafk/rime
- item:
crunchbase: https://www.crunchbase.com/organization/determinate-systems
description: Predictable and safe flake updates
homepage_url: https://flakehub.com
logo: detsys.svg
name: FlakeHub
project: commercial
- item:
description: A public central registry of Nix flakes.
homepage_url: https://flakestry.dev
logo: flakestry.png
name: Flakestry
project: community
repo_url: https://github.com/flakestry/flakestry.dev
- item:
description: Semantic Versioning for Nix Flakes
homepage_url: https://github.com/snowfallorg/thaw
logo: snowfall_org.png
name: Thaw
repo_url: https://github.com/snowfallorg/thaw
project: community
- subcategory:
name: Libraries
items:
- item:
description: Unified configuration for systems, packages, modules, shells, templates, and more with Nix Flakes.
homepage_url: https://github.com/snowfallorg/lib
logo: snowfall_org.png
name: Snowfall Lib
repo_url: https://github.com/snowfallorg/thaw
project: community
- item:
description: Extensible Flake outputs for decentralized Flake output discovery.
homepage_url: https://github.com/DeterminateSystems/flake-schemas
logo: detsys.svg
name: Flake Schemas
repo_url: https://github.com/DeterminateSystems/flake-schemas
project: community
- item:
description: Pure Nix flake utility functions
homepage_url: https://github.com/numtide/flake-utils
logo: numtide.png
name: flake-utils
repo_url: https://github.com/numtide/flake-utils
project: community
- item:
description: Simplify Nix Flakes with the module system
repo_url: https://github.com/hercules-ci/flake-parts
logo: flake-parts.svg
name: flake-parts
homepage_url: https://flake.parts/
project: community
- item:
description: Framework for simplifying flake setup
homepage_url: https://github.com/nix-community/flakelight
logo: nixos.webp
name: Flakelight
repo_url: https://github.com/nix-community/flakelight
project: community
- item:
description: builtins.getFlake without the restrictions
homepage_url: https://github.com/ursi/get-flake
logo: default.webp
name: get-flake
repo_url: https://github.com/ursi/get-flake
- subcategory:
name: CLI
items:
- item:
description: Simplify Nix Flakes on the command line.
homepage_url: https://github.com/snowfallorg/flake
logo: snowfall_org.png
name: Snowfall Flake
repo_url: https://github.com/snowfallorg/flake
project: community
- category:
name: Builders
subcategories:
- subcategory:
name: Rust
items:
- item:
description: A Nix library for building cargo projects. Never build twice thanks to incremental artifact caching.
logo: default.webp
name: crane
repo_url: https://github.com/ipetkov/crane
homepage_url: https://github.com/ipetkov/crane
- item:
description: Build Rust projects in Nix - no configuration, no code generation, no IFD, sandbox friendly.
logo: nix_community.png
name: naersk
repo_url: https://github.com/nix-community/naersk
homepage_url: https://github.com/nix-community/naersk
- item:
description: nix build file generator for rust crates
logo: nix_community.png
name: crate2nix
repo_url: https://github.com/nix-community/crate2nix
homepage_url: https://github.com/nix-community/crate2nix
- subcategory:
name: Any
items:
- item:
description: Instant, easy, and predictable development environments
logo: jetpack.png
name: devbox
project: community
repo_url: https://github.com/jetpack-io/devbox
homepage_url: https://www.jetpack.io/devbox/
- item:
description: Fast, Declarative, Reproducible, and Composable Developer Environments.
logo: devenv.png
name: devenv
project: community
repo_url: https://github.com/cachix/devenv
homepage_url: https://devenv.sh/
- item:
description: Per project developer environments
logo: numtide.png
name: devshell
project: community
repo_url: https://github.com/numtide/devshell
homepage_url: https://numtide.github.io/devshell/
- item:
description: Harness the power of Nix
logo: flox.png
name: flox
project: commercial
repo_url: https://github.com/flox/flox
homepage_url: https://flox.dev
- item:
description: Build software collaboratively with the power of AI, on any device, without spending a second on setup.
logo: replit.png
name: replit
project: commercial
homepage_url: https://replit.com/
- category:
name: Infrastructure
subcategories:
- subcategory:
name: Deployment Tools
items:
- item:
description: A simple, stateless NixOS deployment tool
logo: default.webp
name: colmena
repo_url: https://github.com/zhaofengli/colmena
homepage_url: https://github.com/zhaofengli/colmena
- item:
description: NixOS deployment tool
logo: dbc_digital.png
name: morph
repo_url: https://github.com/dbcdk/morph
homepage_url: https://github.com/dbcdk/morph
- item:
description: A simple multi-profile Nix-flake deploy tool.
logo: serokell.png
name: deploy-rs
repo_url: https://github.com/serokell/deploy-rs
homepage_url: https://github.com/serokell/deploy-rs
- item:
description: Continuous deployments to a Nix profile (like NixOS, nix-darwin or Home Manager) using a pull model.
logo: cachix.png
name: cachix-deploy
project: commercial
homepage_url: https://app.cachix.org/deploy/
- subcategory:
name: Repositories
items:
- item:
description: Nix Packages collection & NixOS
logo: nixos.webp
name: nixpkgs
project: official
repo_url: https://github.com/nixos/nixpkgs
homepage_url: https://github.com/nixos/nixpkgs
- item:
description: Nix User Repository
logo: nix_community.png
name: NUR
repo_url: https://github.com/nix-community/nur
homepage_url: https://github.com/nix-community/nur
- item:
description: Monorepo for Semantically Versioned Releases of Crucial Nix Dependencies
logo: semnix.png
name: semnix
repo_url: https://github.com/semnix/semnix
homepage_url: https://github.com/semnix/semnix
- subcategory:
name: Security
items:
- item:
description: Automatically refresh your Nix flake dependencies.
logo: detsys.svg
name: update-flake-lock
project: community
repo_url: https://github.com/DeterminateSystems/update-flake-lock
homepage_url: https://github.com/DeterminateSystems/update-flake-lock
- item:
description: Health and security checks on your flakes.
logo: detsys.svg
name: Nix Flake Checker
project: community
repo_url: https://github.com/DeterminateSystems/flake-checker
homepage_url: https://github.com/DeterminateSystems/flake-checker
- subcategory:
name: CI / CD
items:
- item:
description: Based on the Determinate Nix Installer, responsible for over tens of thousands of Nix installs daily. The fast, friendly, and reliable GitHub Action to install Nix with Flakes.
logo: detsys.svg
name: The Determinate Nix Installer Action
repo_url: https://github.com/DeterminateSystems/nix-installer-action
homepage_url: https://install.determinate.systems
- item:
description: Save 30-50%+ of CI time without any effort or cost. Use Magic Nix Cache, a totally free and zero-configuration binary cache for Nix on GitHub Actions.
logo: detsys.svg
name: Magic Nix Cache
repo_url: https://github.com/DeterminateSystems/magic-nix-cache-action
homepage_url: https://github.com/marketplace/actions/magic-nix-cache
- item:
description: build tool and environment manager that replaces justfiles/makefiles, docker, and the annoying parts of READMEs
logo: default.webp
name: Garn
repo_url: https://github.com/garnix-io/garn
homepage_url: https://garn.io/
- item:
description: Makes CI with Nix and garn fast — a few seconds for no-op changes
logo: default.webp
name: Garnix CI
project: commercial
homepage_url: https://garnix.io/
- item:
description: Simple Nix-first Continous Integration.
logo: hercules.svg
name: Hercules CI
project: commercial
homepage_url: https://hercules-ci.com/
- item:
description: Hydra, the Nix-based continuous build system
logo: nixos.webp
name: Hydra
repo_url: https://github.com/NixOS/hydra
homepage_url: https://nixos.org/hydra
- item:
description: NixOps is a tool for deploying to NixOS machines in a network or cloud.
logo: nixos.webp
name: NixOps
repo_url: https://github.com/NixOS/nixops
homepage_url: https://nixos.org/nixops
- item:
description: Nix Binary Cache hosting infrastructure.
logo: cachix.png
name: cachix
crunchbase: https://www.crunchbase.com/organization/cachix
project: commercial
repo_url: https://github.com/cachix/cachix
homepage_url: https://cachix.org/
- item:
description: Installs Nix on GitHub Actions for Linux and macOS.
logo: cachix.png
name: install-nix-action
homepage_url: https://github.com/cachix/install-nix-action
- item:
description: Bob is a high-level build tool for multi-language projects.
logo: default.webp
name: Bob
project: commercial
homepage_url: https://bob.build/
- item:
description: event-driven automation for Nomad
logo: default.webp
name: cicero
homepage_url: https://handbook.cicero.ci.iog.io
repo_url: https://github.com/input-output-hk/cicero
- category:
name: Documentation
subcategories:
- subcategory:
name: Wikis
items:
- item:
description: An unofficial, maintained wiki for NixOS.
logo: nixlang.png
name: NixLang Wiki
project: community
repo_url: https://github.com/nixlang-wiki/nixlang-wiki
homepage_url: https://nixlang.wiki
- item:
description: unnofficial wiki
logo: default.webp
name: nixos.wiki
homepage_url: https://nixos.wiki
- subcategory:
name: Tutorials
items:
- item:
description: Your guide to learning Nix and flakes.
logo: detsys.svg
name: Zero to Nix
project: community
repo_url: https://github.com/DeterminateSystems/zero-to-nix
homepage_url: https://zero-to-nix.com
- item:
description: Home of official documentation for the Nix ecosystem.
logo: nixos.webp
name: dev.nix
project: official
repo_url: https://github.com/nixos/nix.dev
homepage_url: https://nix.dev/
- item:
description: Nix Pills
logo: nixos.webp
name: Nix Pills
homepage_url: https://nixos.org/guides/nix-pills/pr01
- subcategory:
name: Books
items:
- item:
description: Nix Reference Manual.
logo: nixos.webp
name: Nix Manual
project: official
repo_url: https://github.com/NixOS/nix/tree/master/doc/manual
homepage_url: https://nixos.org/manual/nix/stable/
- item:
description: NixPkgs Manual.
logo: nixos.webp
name: NixPkgs Manual
project: official
repo_url: https://github.com/NixOS/nixpkgs/tree/master/doc
homepage_url: https://nixos.org/manual/nixpkgs/stable/
- item:
description: NixOS Manual.
logo: nixos.webp
name: NixOS Manual
project: official
repo_url: https://github.com/NixOS/nixpkgs/tree/master/nixos/doc/manual
homepage_url: https://nixos.org/manual/nixos/stable/
- item:
description: Nix Book.
logo: default.webp
name: Nix Book
repo_url: https://github.com/divnix/nix-book
homepage_url: https://book.divnix.com
- item:
description: Nix dictionary
logo: numtide.png
name: nixionary.org
repo_url: https://github.com/numtide/nixionary.org
homepage_url: http://nixionary.org/
- subcategory:
name: Index
items:
- item:
description: NixPkgs, NixOS Options and Flakes search tool.
logo: nixos.webp
name: nixos-search
project: official
repo_url: https://github.com/NixOS/nixos-search/
homepage_url: https://search.nixos.org
- subcategory:
name: Videos
items:
- item:
description: Nix Conference Videos
logo: default.webp
name: NixCon
project: community
homepage_url: https://www.youtube.com/@NixCon
- item:
description: NixOS Foundation channel
logo: nixos.webp
name: NixOS Foundation
project: official
homepage_url: https://www.youtube.com/@NixOS-Foundation
- category:
name: Others
subcategories:
- subcategory:
name: Uncategorized
items:
- item:
description: The Uncompromising Nix Code Formatter
logo: default.webp
name: alejandra
repo_url: https://github.com/kamadorueda/alejandra
homepage_url: https://kamadorueda.github.io/alejandra/
- item:
description: An agenix extension adding secret generation and automatic rekeying using a YubiKey or master-identity
logo: default.webp
name: agenix-rekey
repo_url: https://github.com/oddlama/agenix-rekey
homepage_url: https://github.com/oddlama/agenix-rekey
- item:
description: A repository containing all of the cabal files for all public Haskell packages converted to json
logo: nix_community.png
name: all-cabal-json
repo_url: https://github.com/nix-community/all-cabal-json
homepage_url: https://github.com/nix-community/all-cabal-json
- item:
description: Nix-packaged Android SDK
logo: default.webp
name: android-nixpkgs
repo_url: https://github.com/tadfisher/android-nixpkgs
homepage_url: https://github.com/tadfisher/android-nixpkgs
- item:
description: Multi-tenant Nix Binary Cache
logo: default.webp
name: attic
repo_url: https://github.com/zhaofengli/attic
homepage_url: https://docs.attic.rs/
- item:
description: Nix flake with package, NixOS module and basic VM test for authentik
logo: nix_community.png
name: authentik-nix
repo_url: https://github.com/nix-community/authentik-nix
homepage_url: https://github.com/nix-community/authentik-nix
- item:
description: A curated list of the best resources
logo: nix_community.png
name: awesome-nix
repo_url: https://github.com/nix-community/awesome-nix
homepage_url: https://github.com/nix-community/awesome-nix
- item:
description: A KISS deployment tool to keep your NixOS fleet
logo: default.webp
name: bento
repo_url: https://github.com/rapenne-s/bento/
homepage_url: https://github.com/rapenne-s/bento/
- item:
description: Nix Ops for Terraform, Consul, Vault, Nomad
logo: default.webp
name: bitte
repo_url: https://github.com/input-output-hk/bitte
homepage_url: https://github.com/input-output-hk/bitte
- item:
description: Nix expression for your Bundler-managed application
logo: nix_community.png
name: bundix
repo_url: https://github.com/nix-community/bundix
homepage_url: https://github.com/nix-community/bundix
- item:
description: Share the love of Nix
homepage_url: https://builtwithnix.org
logo: nix_community.png
name: builtwithnix.org
repo_url: https://github.com/nix-community/builtwithnix.org
- item:
description: Cache Nix store in GitHub Actions
logo: nix_community.png
name: cache-nix-action
repo_url: https://github.com/nix-community/cache-nix-action
homepage_url: https://github.com/nix-community/cache-nix-action
- item:
description: Convert deps.edn to a nix expression
logo: default.webp
name: clj2nix
repo_url: https://github.com/hlolli/clj2nix
homepage_url: https://github.com/hlolli/clj2nix
- item:
description: Comma runs software without installing it
logo: nix_community.png
name: comma
repo_url: https://github.com/nix-community/comma
homepage_url: https://github.com/nix-community/comma
- item:
description: Build crystal projects using nix.
logo: nix_community.png
name: crystal2nix
repo_url: https://github.com/nix-community/crystal2nix
homepage_url: https://github.com/nix-community/crystal2nix
- item:
description: Format disks with nix-config
logo: nix_community.png
name: disko
repo_url: https://github.com/nix-community/disko
homepage_url: https://github.com/nix-community/disko
- item:
description: docker images from nixpkgs
logo: nix_community.png
name: docker-nixpkgs
repo_url: https://github.com/nix-community/docker-nixpkgs
homepage_url: https://github.com/nix-community/docker-nixpkgs
- item:
description: nix-community reference documentation
homepage_url: https://nix-community.github.io/docnix/
logo: nix_community.png
name: docnix
repo_url: https://github.com/nix-community/docnix
- item:
description: Simplified nix packaging for various programming language ecosystems
logo: nix_community.png
name: dream2nix
repo_url: https://github.com/nix-community/dream2nix
homepage_url: https://github.com/nix-community/dream2nix
- item:
description: A collection of software packages managed with dream2nix
logo: nix_community.png
name: dreampkgs
repo_url: https://github.com/nix-community/dreampkgs
homepage_url: https://github.com/nix-community/dreampkgs
- item:
description: Convert Eask into Nix expressions
logo: nix_community.png
name: eask2nix
repo_url: https://github.com/nix-community/eask2nix
homepage_url: https://github.com/nix-community/eask2nix
- item:
description: Automatically generate Nix expressions for Emacs packages
logo: nix_community.png
name: emacs2nix
repo_url: https://github.com/nix-community/emacs2nix
homepage_url: https://github.com/nix-community/emacs2nix
- item:
description: Bleeding edge emacs overlay
logo: nix_community.png
name: emacs-overlay
repo_url: https://github.com/nix-community/emacs-overlay
homepage_url: https://github.com/nix-community/emacs-overlay
- item:
description: Nixpkgs for the Ethereum ecosystem.
logo: nix_community.png
name: ethereum.nix
repo_url: https://github.com/nix-community/ethereum.nix
homepage_url: https://github.com/nix-community/ethereum.nix
- item:
description: All-in-one management system for everything you need to be productive on your computer.
logo: default.webp
name: fleek
repo_url: https://github.com/ublue-os/fleek
homepage_url: https://getfleek.dev/
- item:
description: Convert applications using Go modules to Nix
logo: nix_community.png
name: gomod2nix
repo_url: https://github.com/nix-community/gomod2nix
homepage_url: https://github.com/nix-community/gomod2nix
- item:
description: Elements of Nix re-implemented as Go libraries
logo: nix_community.png
name: go-nix
repo_url: https://github.com/nix-community/go-nix
homepage_url: https://github.com/nix-community/go-nix
- item:
description: Generate Nix expressions which build Gradle-based projects.
logo: default.webp
name: gradle2nix
repo_url: https://github.com/tadfisher/gradle2nix
homepage_url: https://github.com/tadfisher/gradle2nix
- item:
description: Nix binary cache implemented in rust
logo: nix_community.png
name: harmonia
repo_url: https://github.com/nix-community/harmonia
homepage_url: https://github.com/nix-community/harmonia
- item:
description: Alternative Haskell Infrastructure for Nixpkgs
logo: default.webp
name: haskell.nix
repo_url: https://github.com/input-output-hk/haskell.nix
homepage_url: https://github.com/input-output-hk/haskell.nix
- item:
description: Manage a user environment using Nix
logo: nix_community.png
name: home-manager
repo_url: https://github.com/nix-community/home-manager
homepage_url: https://github.com/nix-community/home-manager
- item:
description: Filesystem-based module system for Nix
logo: nix_community.png
name: haumea
repo_url: https://github.com/nix-community/haumea
homepage_url: https://github.com/nix-community/haumea
- item:
description: Modules to help you handle persistent state on systems with ephemeral root storage
logo: nix_community.png
name: impermanence
repo_url: https://github.com/nix-community/impermanence
homepage_url: https://github.com/nix-community/impermanence
- item:
description: Node.js modules installation using Nix
logo: default.webp
name: js2nix
repo_url: https://github.com/canva-public/js2nix
homepage_url: https://github.com/canva-public/js2nix
- item:
description: krops is a lightweight toolkit to deploy NixOS systems, remotely or locally.
logo: default.webp
name: krops
repo_url: https://cgit.krebsco.de/krops/about/
homepage_url: https://cgit.krebsco.de/krops/about/
- item:
description: Secure Boot for NixOS
logo: nix_community.png
name: lanzaboote
repo_url: https://github.com/nix-community/lanzaboote
homepage_url: https://github.com/nix-community/lanzaboote
- item:
description: Lollypop Operations - NixOS Deployment Tool
logo: default.webp
name: Lollypops
repo_url: https://github.com/pinpox/lollypops
homepage_url: https://github.com/pinpox/lollypops
- item:
description: Your project’s nix-env
logo: nix_community.png
name: lorri
repo_url: https://github.com/nix-community/lorri
homepage_url: https://github.com/nix-community/lorri
- item:
description: Create highly reproducible python environments
logo: default.webp
name: mach-nix
repo_url: https://github.com/DavHau/mach-nix
homepage_url: https://github.com/DavHau/mach-nix
- item:
description: Deterministic Maven builds using Nix
logo: nix_community.png
name: mavenix
repo_url: https://github.com/nix-community/mavenix
homepage_url: https://github.com/nix-community/mavenix
- item:
description: Declarative Minecraft server in NixOS
logo: nix_community.png
name: mineflake
repo_url: https://github.com/nix-community/mineflake
homepage_url: https://github.com/nix-community/mineflake
- item:
description: Snapshot testing for Nix
logo: nix_community.png
name: namaka
repo_url: https://github.com/nix-community/namaka
homepage_url: https://github.com/nix-community/namaka
- item:
description: npm packages in Nix
logo: nix_community.png
name: napalm
repo_url: https://github.com/nix-community/napalm
homepage_url: https://github.com/nix-community/napalm
- item:
description: An archive-less dockerTools.buildImage implementation
logo: default.webp
name: nix2containers
repo_url: https://github.com/nlewo/nix2container
homepage_url: https://github.com/nlewo/nix2container
- item:
description: generate nix expression from config.toml
logo: nix_community.png
name: nix4vscode
repo_url: https://github.com/nix-community/nix4vscode
homepage_url: https://github.com/nix-community/nix4vscode
- item:
description: Generate configuration files using Nix
logo: nix_community.png
name: nixago
repo_url: https://github.com/nix-community/nixago
homepage_url: https://github.com/nix-community/nixago
- item:
description: NixOS Vagrant boxes
logo: nix_community.png
name: nixbox
repo_url: https://github.com/nix-community/nixbox
homepage_url: https://github.com/nix-community/nixbox
- item:
description: Nix+Bazel Codelab
logo: tweag.png
name: nix_bazel_codelab
repo_url: https://github.com/tweag/nix_bazel_codelab
homepage_url: https://github.com/tweag/nix_bazel_codelab
- item:
description: Fast, secure and scalable Nix builds as a service.
logo: nixbuild.svg
name: nixbuild.net
project: commercial
homepage_url: https://nixbuild.net
- item:
description: Nix language server, based on nix libraries
logo: nix_community.png
name: nixd
repo_url: https://github.com/nix-community/nixd
homepage_url: https://github.com/nix-community/nixd
- item:
description: Nix builder for Dart packages
logo: default.webp
name: nix-dart
repo_url: https://github.com/tadfisher/nix-dart
homepage_url: https://github.com/tadfisher/nix-dart
- item:
description: nix modules for darwin
logo: nix-darwin.png
name: nix-darvin
repo_url: https://github.com/LnL7/nix-darwin
homepage_url: https://github.com/LnL7/nix-darwin
- item:
description: Swiss army knife container for vscode development environments
logo: default.webp
name: nix-devcontainer
repo_url: https://github.com/xtruder/nix-devcontainer
homepage_url: https://github.com/xtruder/nix-devcontainer
- item:
description: Tool to generate documentation for Nix library functions
logo: nix_community.png
name: nixdoc
repo_url: https://github.com/nix-community/nixdoc
homepage_url: https://github.com/nix-community/nixdoc
- item:
description: An automatic editor for replit.nix files
logo: replit.png
name: nix-editor
repo_url: https://github.com/replit/nix-editor
homepage_url: https://github.com/replit/nix-editor
- item:
description: out-of-tree shell.nix files
logo: nix_community.png
name: nix-environments
repo_url: https://github.com/nix-community/nix-environments
homepage_url: https://github.com/nix-community/nix-environments
- item:
description: Allows switch environment for Visual Studio Code using Nix Package Manager.
logo: default.webp
name: nix-env-selector
repo_url: https://github.com/arrterian/nix-env-selector
homepage_url: https://github.com/arrterian/nix-env-selector
- item:
description: An ad-hoc container image registry that provides packages from the Nix package manager.
logo: nixery.png
name: nixery
repo_url: https://cs.tvl.fyi/depot/-/tree/tools/nixery
homepage_url: https://nixery.dev
- item:
description: Parallel nix evaluator with a streamable json output
logo: nix_community.png
name: nix-eval-jobs
repo_url: https://github.com/nix-community/nix-eval-jobs
homepage_url: https://github.com/nix-community/nix-eval-jobs
- item:
description: A wrapper tool for nix OpenGL application
logo: nix_community.png
name: nixGL
repo_url: https://github.com/nix-community/nixGL
homepage_url: https://github.com/nix-community/nixGL
- item:
description: Run OpenGL/Cuda programs built with Nix, on all Linux distributions.
logo: numtide.png
name: nix-gl-host
repo_url: https://github.com/numtide/nix-gl-host
homepage_url: https://github.com/numtide/nix-gl-host
- item:
description: Search historical versions of nix packages
logo: default.webp
name: nixhub.io
homepage_url: https://nixhub.io
- item:
description: Quickly locate nix packages with specific files
logo: nix_community.png
name: nix-index
repo_url: https://github.com/nix-community/nix-index
homepage_url: https://github.com/nix-community/nix-index
- item:
description: Weekly updated nix-index database
logo: nix_community.png
name: nix-index-database
repo_url: https://github.com/nix-community/nix-index-database
homepage_url: https://github.com/nix-community/nix-index-database
- item:
description: Generate Nix packages from URLs
logo: nix_community.png
name: nix-init
repo_url: https://github.com/nix-community/nix-init
homepage_url: https://github.com/nix-community/nix-init
- item:
description: Run unpatched dynamic binaries on NixOS
logo: nix_community.png
name: nix-ld-rs
repo_url: https://github.com/nix-community/nix-ld-rs
homepage_url: https://github.com/nix-community/nix-ld-rs
- item:
description: A ranger-like flake.lock viewer
logo: nix_community.png
name: nix-melt
repo_url: https://github.com/nix-community/nix-melt
homepage_url: https://github.com/nix-community/nix-melt
- item:
description: A linux distribution based on Nix
logo: nix_community.png
name: NixNG
repo_url: https://github.com/nix-community/NixNG
homepage_url: https://github.com/nix-community/NixNG
- item:
description: Nix-enabled environment for your Android device.
logo: nix_community.png
name: nix-on-droid
repo_url: https://github.com/nix-community/nix-on-droid
homepage_url: https://github.com/nix-community/nix-on-droid
- item:
description: Nix based Linux Distribution
homepage_url: https://nixos.org
logo: nixos.webp
name: NixOS
project: official
repo_url: https://github.com/NixOS/nixpkgs/tree/master/nixos
- item:
description: Nix based Linux Distribution
homepage_url: https://mobile.nixos.org/
logo: nixos.webp
name: Mobile NixOS
project: official
repo_url: https://github.com/NixOS/mobile-nixos
- item:
description: SnowflakeOS is a NixOS based Linux distribution focused on beginner friendliness and ease of use.
homepage_url: https://snowflakeos.org/
logo: default.webp
name: SnowflakeOS
repo_url: https://github.com/snowflakelinux/snowflake-modules
- item:
description: A formatter for Nix code
logo: serokell.png
name: nixfmt
repo_url: https://github.com/serokell/nixfmt
homepage_url: https://github.com/serokell/nixfmt
- item:
description: Run Marp tools via Nix
logo: tweag.png
name: nix-marp
repo_url: https://github.com/tweag/nix-marp
homepage_url: https://github.com/tweag/nix-marp
- item:
description: install nixos everywhere via ssh
logo: nix_community.png
name: nixos-anywhere
repo_url: https://github.com/nix-community/nixos-anywhere
homepage_url: https://github.com/nix-community/nixos-anywhere
- item:
description: A libadwaita/gtk4 app for editing NixOS configurations
logo: default.webp
name: nixos-config-editor
repo_url: https://github.com/vlinkz/nixos-conf-editor
homepage_url: https://github.com/vlinkz/nixos-conf-editor
- item:
description: Collection of image builders
logo: nix_community.png
name: nixos-generators
repo_url: https://github.com/nix-community/nixos-generators
homepage_url: https://github.com/nix-community/nixos-generators
- item:
description: Questions for the weekly Nix Hour.
logo: tweag.png
name: nix-hour
repo_url: https://github.com/tweag/nix-hour
homepage_url: https://www.youtube.com/playlist?list=PLyzwHTVJlRc8yjlx4VR4LU5A5O44og9in
- item:
description: scripts to install NixOS on various server
logo: nix_community.png
name: nixos-install-scripts
repo_url: https://github.com/nix-community/nixos-install-scripts
homepage_url: https://github.com/nix-community/nixos-install-scripts
- item:
description: NixOS Router build on the Raspberry Pi
logo: default.webp
name: nixos-raspberrypi-router
repo_url: https://github.com/pinpox/nixos-raspberrypi-router
homepage_url: https://github.com/pinpox/nixos-raspberrypi-router
- item:
description: NixOS on WSL
logo: nix_community.png
name: NixOS-WSL
repo_url: https://github.com/nix-community/NixOS-WSL
homepage_url: https://github.com/nix-community/NixOS-WSL
- item:
description: Nix old package search
logo: default.webp
name: nix-packages-history
homepage_url: https://history.nix-packages.com/
- item:
description: Generate a graph from nixpkgs
logo: tweag.png
name: nixpkgs-graph
repo_url: https://github.com/tweag/nixpkgs-graph
homepage_url: https://github.com/tweag/nixpkgs-graph
- item:
description: Explore the nixpkgs dependency graph
logo: tweag.png
name: nixpkgs-graph-explorer
repo_url: https://github.com/tweag/nixpkgs-graph-explorer
homepage_url: https://github.com/tweag/nixpkgs-graph-explorer
- item:
description: nixpkgs lib for cheap instantiation
logo: nix_community.png
name: nixpkgs.lib
repo_url: https://github.com/nix-community/nixpkgs.lib
homepage_url: https://github.com/nix-community/nixpkgs.lib
- item:
description: A fast semantic linter for Nix using tree-sitter
logo: nix_community.png
name: nixpkgs-lint
repo_url: https://github.com/nix-community/nixpkgs-lint
homepage_url: https://github.com/nix-community/nixpkgs-lint
- item:
description: Review pull-requests on nixpkgs.
logo: default.webp
name: nixpkgs-review
repo_url: https://github.com/Mic92/nixpkgs-review
homepage_url: https://github.com/Mic92/nixpkgs-review
project: community
- item:
description: nixpkgs with the unfree bits enabled
homepage_url: https://github.com/numtide/nixpkgs-unfree
logo: numtide.png
name: nixpkgs-unfree
repo_url: https://github.com/numtide/nixpkgs-unfree
project: community
- item:
description: Auto-updating terraform providers for nix
logo: nix_community.png
name: nixpkgs-terraform-providers-bin
repo_url: https://github.com/nix-community/nixpkgs-terraform-providers-bin
homepage_url: https://github.com/nix-community/nixpkgs-terraform-providers-bin
- item:
description: Re-implementation of Nix remote build protocol
logo: tweag.png
name: nix-remote-rust
repo_url: https://github.com/tweag/nix-remote-rust
homepage_url: https://github.com/tweag/nix-remote-rust
- item:
description: Build nix packages that use npm/yarn
logo: default.webp
name: nix-npm-buildpackage
repo_url: https://github.com/serokell/nix-community/nix-npm-buildpackage
homepage_url: https://github.com/serokell/nix-community/nix-npm-buildpackage
- item:
description: A simple gtk4/libadwaita software center to easily install and manage nix packages
logo: default.webp
name: nix-software-center
repo_url: https://github.com/vlinkz/nix-software-center
homepage_url: https://github.com/vlinkz/nix-software-center
- item:
description: Brings native understanding of Nix packages to containerd
logo: default.webp
name: nix-snapshotter
repo_url: https://github.com/pdtpartners/nix-snapshotter
homepage_url: https://github.com/pdtpartners/nix-snapshotter
- item:
description: Nix integration to straight.el
logo: nix_community.png
name: nix-straight.el
repo_url: https://github.com/nix-community/nix-straight.el
homepage_url: https://github.com/nix-community/nix-straight.el
- item:
description: Simple unit-testing for Nix
logo: nix_community.png
name: nixt
repo_url: https://github.com/nix-community/nixt
homepage_url: https://github.com/nix-community/nixt
- item:
description: A CLI tool to extract the graph of derivations from a Nix flake.
logo: tweag.png
name: nixtract
repo_url: https://github.com/tweag/nixtract
homepage_url: https://github.com/tweag/nixtract
- item:
description: Unit testing for Nix code
logo: nix_community.png
name: nix-unit
repo_url: https://github.com/nix-community/nix-unit
homepage_url: https://github.com/nix-community/nix-unit
- item:
description: Install & Run nix without root permissions
logo: nix_community.png
name: nix-user-chroot
repo_url: https://github.com/nix-community/nix-user-chroot
homepage_url: https://github.com/nix-community/nix-user-chroot
- item:
description: Find all versions of a package that were available in a channel and the revision you can download it from.
logo: default.webp