-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathall-maintainers.nix
More file actions
2410 lines (2410 loc) · 54.6 KB
/
all-maintainers.nix
File metadata and controls
2410 lines (2410 loc) · 54.6 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
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
# Home Manager all maintainers list.
#
# This file lists all referenced maintainers in Home Manager.
#
# This file is automatically generated using meta.maintainers from Home Manager evaluation
# DO NOT EDIT MANUALLY
#
# To regenerate: ./lib/python/generate-all-maintainers.py
#
{
"0xda157" = {
email = "da157@voidq.com";
github = "0xda157";
githubId = 153149335;
keys = [
{
fingerprint = "5A66 FF95 36DE B501 DDD2 1647 B7AC 1B10 365D 45FF";
}
];
matrix = "@da157:catgirl.cloud";
name = "0xda157";
source = "nixpkgs";
};
"3ulalia" = {
email = "3ulalia@proton.me";
github = "3ulalia";
githubId = 179992797;
name = "Eulalia del Sol";
source = "home-manager";
};
"74k1" = {
email = "git.t@betsumei.com";
github = "74k1";
githubId = 49000471;
name = "Tim";
source = "home-manager";
};
"9p4" = {
email = "vcs@ersei.net";
github = "9p4";
githubId = 17993169;
name = "9p4";
source = "home-manager";
};
A-jay98 = {
email = "ali@jamadi.me";
github = "A-jay98";
githubId = 23138252;
name = "Ali Jamadi";
source = "nixpkgs";
};
ALameLlama = {
email = "nicholas@ciech.anow.ski";
github = "ALameLlama";
githubId = 55490546;
name = "Nicholas Ciechanowski";
source = "nixpkgs";
};
Aehmlo = {
email = "1622250+Aehmlo@users.noreply.github.com";
github = "Aehmlo";
githubId = 1622250;
name = "Alex";
source = "home-manager";
};
AndreasMager = {
email = "andreas@mager.eu";
github = "AndreasMager";
githubId = 5646732;
name = "Andreas Mager";
source = "nixpkgs";
};
Austreelis = {
email = "github@accounts.austreelis.net";
github = "Austreelis";
githubId = 56743515;
name = "Morgane Austreelis";
source = "nixpkgs";
};
CarlosLoboxyz = {
email = "86011416+CarlosLoboxyz@users.noreply.github.com";
github = "CarlosLoboxyz";
githubId = 86011416;
name = "Carlos Lobo";
source = "home-manager";
};
DOD-101 = {
email = "david.thievon@proton.me";
github = "DOD-101";
githubId = 131907205;
name = "David Thievon";
source = "nixpkgs";
};
DamienCassou = {
email = "damien@cassou.me";
github = "DamienCassou";
githubId = 217543;
name = "Damien Cassou";
source = "nixpkgs";
};
Daru-san = {
email = "zadarumaka@proton.me";
github = "Daru-san";
githubId = 135046711;
name = "Daru";
source = "nixpkgs";
};
Dines97 = {
email = "19364873+Dines97@users.noreply.github.com";
github = "Dines97";
githubId = 19364873;
name = "Denis Kaynar";
source = "home-manager";
};
Fendse = {
email = "46252070+Fendse@users.noreply.github.com";
github = "Fendse";
githubId = 46252070;
name = "Sara Johnsson";
source = "nixpkgs";
};
Flameopathic = {
email = "flameopathic@gmail.com";
github = "Flameopathic";
githubId = 64027365;
name = "Erin Pletches";
source = "nixpkgs";
};
FredeHoey = {
email = "frederikbraendstrup@gmail.com";
github = "FredeHoey";
githubId = 7551358;
name = "Frede Emil";
source = "nixpkgs";
};
FriedrichAltheide = {
github = "FriedrichAltheide";
githubId = 11352905;
name = "Friedrich Altheide";
source = "nixpkgs";
};
GaetanLepage = {
email = "gaetan@glepage.com";
github = "GaetanLepage";
githubId = 33058747;
name = "Gaetan Lepage";
source = "nixpkgs";
};
Gerschtli = {
email = "tobias.happ@gmx.de";
github = "Gerschtli";
githubId = 10353047;
name = "Tobias Happ";
source = "nixpkgs";
};
HPsaucii = {
email = "me@hpsaucii.dev";
github = "HPsaucii";
githubId = 126502193;
keys = [
{
fingerprint = "AD32 73D4 5E0E 9478 E826 543F EDB2 C634 166A E6AD";
longkeyid = "rsa4096/0xEDB2C634166AE6AD";
}
];
name = "Holly Powell";
source = "home-manager";
};
HeitorAugustoLN = {
email = "nixpkgs.woven713@passmail.net";
github = "HeitorAugustoLN";
githubId = 44377258;
matrix = "@heitoraugusto:matrix.org";
name = "Heitor Augusto";
source = "nixpkgs";
};
Janik-Haag = {
email = "janik@aq0.de";
github = "Janik-Haag";
githubId = 80165193;
matrix = "@janik0:matrix.org";
name = "Janik";
source = "nixpkgs";
};
JasmineLowen = {
email = "robwalter96@gmail.com";
github = "JasmineLowen";
githubId = 26892280;
name = "Robert Walter";
source = "nixpkgs";
};
JoaquinTrinanes = {
email = "hi@joaquint.io";
github = "JoaquinTrinanes";
githubId = 1385934;
keys = [
{
fingerprint = "3A13 5C15 E1D5 850D 2F90 AB25 6E14 46DD 451C 6BAF";
}
];
name = "Joaquín Triñanes";
source = "nixpkgs";
};
Joker9944 = {
email = "github@shroud.mozmail.com";
github = "Joker9944";
githubId = 9194199;
name = "Felix von Arx";
source = "nixpkgs";
};
JustinLovinger = {
email = "git@justinlovinger.com";
github = "JustinLovinger";
githubId = 7183441;
name = "Justin Lovinger";
source = "nixpkgs";
};
KiaraGrouwstra = {
email = "cinereal@riseup.net";
github = "KiaraGrouwstra";
githubId = 3059397;
matrix = "@cinerealkiara:matrix.org";
name = "kiara";
source = "nixpkgs";
};
Kladki = {
email = "matthias@ahouansou.cz";
github = "Kladki";
githubId = 158313939;
matrix = "@matthias:ahouansou.cz";
name = "Matthias Ahouansou";
source = "nixpkgs";
};
Kranzes = {
email = "personal@ilanjoselevich.com";
github = "Kranzes";
githubId = 56614642;
name = "Ilan Joselevich";
source = "nixpkgs";
};
Kyure-A = {
email = "49436968+Kyure-A@users.noreply.github.com";
github = "Kyure-A";
githubId = 49436968;
name = "Kyure_A";
source = "home-manager";
};
LesVu = {
email = "lesvu@ingressland.com";
github = "LesVu";
githubId = 66196443;
name = "John Ferse";
source = "home-manager";
};
LilleAila = {
email = "olai@olai.dev";
github = "LilleAila";
githubId = 67327023;
keys = [
{
fingerprint = "8185 29F9 BB4C 33F0 69BB 9782 D1AC CDCF 2B9B 9799";
}
];
name = "Olai";
source = "nixpkgs";
};
LucasWagler = {
email = "lucas@wagler.dev";
github = "LucasWagler";
githubId = 32136449;
name = "Lucas Wagler";
source = "home-manager";
};
M0NsTeRRR = {
email = "nix@mail.adminafk.fr";
github = "M0NsTeRRR";
githubId = 37785089;
name = "Ludovic Ortega";
source = "nixpkgs";
};
MForster = {
email = "email@michael-forster.de";
github = "MForster";
githubId = 4067975;
name = "Michael Forster";
source = "nixpkgs";
};
Misterio77 = {
email = "eu@misterio.me";
github = "Misterio77";
githubId = 5727578;
keys = [
{
fingerprint = "7088 C742 1873 E0DB 97FF 17C2 245C AB70 B4C2 25E9";
}
];
matrix = "@misterio:matrix.org";
name = "Gabriel Fontes";
source = "nixpkgs";
};
NickHu = {
email = "me@nickhu.co.uk";
github = "NickHu";
githubId = 450276;
name = "Nick Hu";
source = "nixpkgs";
};
NitroSniper = {
email = "nitro@ortin.dev";
github = "NitroSniper";
githubId = 44097331;
name = "Nitro Sniper";
source = "home-manager";
};
Noodlez1232 = {
email = "contact@nathanielbarragan.xyz";
github = "Noodlez1232";
githubId = 12480453;
matrix = "@noodlez1232:matrix.org";
name = "Nathaniel Barragan";
source = "nixpkgs";
};
NotAShelf = {
email = "raf@notashelf.dev";
github = "NotAShelf";
githubId = 62766066;
matrix = "@raf:notashelf.dev";
name = "NotAShelf";
source = "nixpkgs";
};
Oughie = {
email = "oughery@gmail.com";
github = "Oughie";
githubId = 123173954;
name = "Oughie";
source = "nixpkgs";
};
Pamplemousse = {
email = "xav.maso@gmail.com";
github = "Pamplemousse";
githubId = 2647236;
matrix = "@pamplemouss_:matrix.org";
name = "Xavier Maso";
source = "nixpkgs";
};
PerchunPak = {
email = "nixpkgs@perchun.it";
github = "PerchunPak";
githubId = 68118654;
keys = [
{
fingerprint = "BBB5 1142 959D 8549 A3D2 F6C5 313F 67D1 EAB7 70F9";
}
];
name = "Perchun Pak";
source = "nixpkgs";
};
Philipp-M = {
email = "philipp@mildenberger.me";
github = "Philipp-M";
githubId = 9267430;
name = "Philipp Mildenberger";
source = "nixpkgs";
};
Rosuavio = {
email = "RosarioPulella@gmail.com";
github = "Rosuavio";
githubId = 7164552;
name = "Rosario Pulella";
source = "nixpkgs";
};
S0AndS0 = {
email = "S0AndS0@digital-mercenaries.com";
github = "S0AndS0";
githubId = 4116150;
matrix = "@s0ands0:matrix.org";
name = "S0AndS0";
source = "nixpkgs";
};
Scrumplex = {
email = "contact@scrumplex.net";
github = "Scrumplex";
githubId = 11587657;
keys = [
{
fingerprint = "E173 237A C782 296D 98F5 ADAC E13D FD4B 4712 7951";
}
];
matrix = "@Scrumplex:duckhub.io";
name = "Sefa Eyeoglu";
source = "nixpkgs";
};
SebTM = {
email = "mail@sebastian-sellmeier.de";
github = "SebTM";
githubId = 17243347;
name = "Sebastian Sellmeier";
source = "nixpkgs";
};
ShamrockLee = {
email = "shamrocklee@posteo.net";
github = "ShamrockLee";
githubId = 44064051;
matrix = "@shamrocklee:matrix.org";
name = "Yueh-Shun Li";
source = "nixpkgs";
};
Smona = {
email = "mason.bourgeois@gmail.com";
github = "Smona";
githubId = 7091399;
keys = [
{
fingerprint = "897E 6BE3 0345 B43D CADD 05B7 290F CF08 1AED B3EC";
}
];
name = "Mel Bourgeois";
source = "nixpkgs";
};
Swarsel = {
email = "leon@swarsel.win";
github = "Swarsel";
githubId = 32304731;
keys = [
{
fingerprint = "4BE7 9252 6228 9B47 6DBB C17B 76FD 3810 215A E097";
}
];
name = "Leon Schwarzäugl";
source = "nixpkgs";
};
ThibautMarty = {
email = "github@thibautmarty.fr";
github = "ThibautMarty";
githubId = 3268082;
matrix = "@thibaut:thibautmarty.fr";
name = "Thibaut Marty";
source = "nixpkgs";
};
Thra11 = {
email = "tahall256@protonmail.ch";
github = "Thra11";
githubId = 1391883;
name = "Tom Hall";
source = "nixpkgs";
};
Valodim = {
email = "look@my.amazin.horse";
github = "Valodim";
githubId = 27813;
matrix = "@Valodim:stratum0.org";
name = "Vincent Breitmoser";
source = "nixpkgs";
};
WGUNDERWOOD = {
email = "wg.underwood13@gmail.com";
github = "WGUNDERWOOD";
githubId = 42812654;
name = "William Underwood";
source = "nixpkgs";
};
Weathercold = {
email = "weathercold.scr@proton.me";
github = "Weathercold";
githubId = 49368953;
keys = [
{
fingerprint = "D20F C904 A145 8B28 53D8 FBA0 0422 0096 01E4 87FC";
}
];
matrix = "@weathercold:matrix.org";
name = "Weathercold";
source = "nixpkgs";
};
WeetHet = {
github = "WeetHet";
githubId = 43210583;
matrix = "@weethet:catgirl.cloud";
name = "WeetHet";
source = "nixpkgs";
};
XYenon = {
email = "i@xyenon.bid";
github = "XYenon";
githubId = 20698483;
name = "XYenon";
source = "nixpkgs";
};
aabccd021 = {
email = "aabccd021@gmail.com";
github = "aabccd021";
githubId = 33031950;
name = "Muhamad Abdurahman";
source = "home-manager";
};
abayomi185 = {
email = "yomi+nix@yomitosh.com";
github = "abayomi185";
githubId = 21103047;
name = "Yomi";
source = "home-manager";
};
adda0 = {
email = "chocholaty.david@protonmail.com";
github = "adda0";
githubId = 52529234;
matrix = "@adda0:matrix.org";
name = "David Chocholatý";
source = "nixpkgs";
};
adisbladis = {
email = "adisbladis@gmail.com";
github = "adisbladis";
githubId = 63286;
matrix = "@adis:blad.is";
name = "Adam Hose";
source = "nixpkgs";
};
afresquet = {
email = "alvarofresquet@gmail.com";
github = "afresquet";
githubId = 29437693;
name = "Alvaro Fresquet";
source = "home-manager";
};
aguirre-matteo = {
email = "aguirre.matteo@proton.me";
github = "aguirre-matteo";
githubId = 158215792;
name = "aguirre-matteo";
source = "home-manager";
};
aheaume = {
email = "aheaume@users.noreply.github.com";
github = "aheaume";
githubId = 13830042;
name = "aheaume";
source = "home-manager";
};
aionescu = {
email = "github@ionescu.sh";
github = "aionescu";
githubId = 48064242;
name = "Alex Ionescu";
source = "nixpkgs";
};
ajgon = {
email = "igor@rzegocki.pl";
github = "ajgon";
githubId = 150545;
name = "Igor Rzegocki";
source = "nixpkgs";
};
alexarice = {
email = "alexrice999@hotmail.co.uk";
github = "alexarice";
githubId = 17208985;
name = "Alex Rice";
source = "nixpkgs";
};
alinnow = {
email = "alin@alin.ovh";
github = "alinnow";
githubId = 850317;
name = "Alin";
source = "nixpkgs";
};
ambroisie = {
email = "bruno.nixpkgs@belanyi.fr";
github = "ambroisie";
githubId = 12465195;
name = "Bruno BELANYI";
source = "nixpkgs";
};
andre4ik3 = {
email = "andre4ik3@fastmail.com";
github = "andre4ik3";
githubId = 62390580;
matrix = "@andre4ik3:matrix.org";
name = "andre4ik3";
source = "nixpkgs";
};
anthonyroussel = {
email = "anthony@roussel.dev";
github = "anthonyroussel";
githubId = 220084;
keys = [
{
fingerprint = "472D 368A F107 F443 F3A5 C712 9DC4 987B 1A55 E75E";
}
];
matrix = "@anthonyrsl:matrix.org";
name = "Anthony Roussel";
source = "nixpkgs";
};
antonmosich = {
email = "anton@mosich.at";
github = "antonmosich";
githubId = 27223336;
keys = [
{
fingerprint = "F401 287C 324F 0A1C B321 657B 9B96 97B8 FB18 7D14";
}
];
name = "Anton Mosich";
source = "nixpkgs";
};
arjan-s = {
email = "github@anymore.nl";
github = "arjan-s";
githubId = 10400299;
name = "Arjan Schrijver";
source = "nixpkgs";
};
arunoruto = {
email = "mirza.arnaut45@gmail.com";
github = "arunoruto";
githubId = 21687187;
name = "Mirza Arnaut";
source = "nixpkgs";
};
asymmetric = {
email = "lorenzo@mailbox.org";
github = "asymmetric";
githubId = 101816;
matrix = "@asymmetric:matrix.dapp.org.uk";
name = "Lorenzo Manacorda";
source = "nixpkgs";
};
b1kku = {
email = "bikku+dev@slmail.me";
github = "b1kku";
githubId = 77858854;
name = "Bikku";
source = "nixpkgs";
};
bamhm182 = {
email = "bamhm182@gmail.com";
github = "bamhm182";
githubId = 920269;
name = "bamhm182";
source = "home-manager";
};
bddvlpr = {
email = "luna@bddvlpr.com";
github = "bddvlpr";
githubId = 17461028;
name = "Luna Simons";
source = "nixpkgs";
};
berbiche = {
email = "nicolas@normie.dev";
github = "berbiche";
githubId = 20448408;
keys = [
{
fingerprint = "D446 E58D 87A0 31C7 EC15 88D7 B461 2924 45C6 E696";
}
];
name = "Nicolas Berbiche";
source = "nixpkgs";
};
bertof = {
email = "berto.f@protonmail.com";
github = "bertof";
githubId = 9915675;
keys = [
{
fingerprint = "17C5 1EF9 C0FE 2EB2 FE56 BB53 FE98 AE5E C52B 1056";
}
];
name = "Filippo Berto";
source = "nixpkgs";
};
bjpbakker = {
email = "bart@thesoftwarecraft.com";
github = "bjpbakker";
githubId = 605641;
name = "Bart Bakker";
source = "home-manager";
};
blmhemu = {
email = "19410501+blmhemu@users.noreply.github.com";
github = "blmhemu";
githubId = 19410501;
name = "blmhemu";
source = "home-manager";
};
bmrips = {
email = "benedikt.rips@gmail.com";
github = "bmrips";
githubId = 20407973;
name = "Benedikt M. Rips";
source = "nixpkgs";
};
bobvanderlinden = {
email = "bobvanderlinden@gmail.com";
github = "bobvanderlinden";
githubId = 6375609;
name = "Bob van der Linden";
source = "nixpkgs";
};
booxter = {
email = "ihar.hrachyshka@gmail.com";
github = "booxter";
githubId = 90200;
name = "Ihar Hrachyshka";
source = "nixpkgs";
};
brckd = {
email = "hello@bricked.dev";
github = "brckd";
githubId = 92804487;
keys = [
{
fingerprint = "58A2 81E6 2FBD 6E4E 664C B603 7B4D 2A02 BB0E C28C";
}
];
name = "bricked";
source = "nixpkgs";
};
britter = {
email = "beneritter@gmail.com";
github = "britter";
githubId = 1327662;
name = "Benedikt Ritter";
source = "nixpkgs";
};
c0deaddict = {
email = "josvanbakel@protonmail.com";
github = "c0deaddict";
githubId = 510553;
name = "Jos van Bakel";
source = "nixpkgs";
};
cab404 = {
email = "cab404@mailbox.org";
github = "cab404";
githubId = 6453661;
keys = [
{
fingerprint = "1BB96810926F4E715DEF567E6BA7C26C3FDF7BB3";
}
{
fingerprint = "1EBC648C64D6045463013B3EB7EFFC271D55DB8A";
}
];
name = "Vladimir Serov";
source = "nixpkgs";
};
cafkafk = {
email = "christina@cafkafk.com";
github = "cafkafk";
githubId = 89321978;
keys = [
{
fingerprint = "7B9E E848 D074 AE03 7A0C 651A 8ED4 DEF7 375A 30C8";
}
{
fingerprint = "208A 2A66 8A2F CDE7 B5D3 8F64 CDDC 792F 6552 51ED";
}
];
matrix = "@cafkafk:gitter.im";
name = "Christina Sørensen";
source = "nixpkgs";
};
callumio = {
email = "git@cleslie.uk";
github = "callumio";
githubId = 16057677;
keys = [
{
fingerprint = "BC82 4BB5 1656 D144 285E A0EC D382 C4AF EECE AA90";
}
{
fingerprint = "890B 06FB 209A 3E44 9491 C028 03B0 1F42 7831 BCFD";
}
];
name = "Callum Leslie";
source = "nixpkgs";
};
chayleaf = {
email = "chayleaf-nix@pavluk.org";
github = "chayleaf";
githubId = 9590981;
keys = [
{
fingerprint = "4314 3701 154D 9E5F 7051 7ECF 7817 1AD4 6227 E68E";
}
];
matrix = "@chayleaf:matrix.pavluk.org";
name = "Anna Pavlyuk";
source = "nixpkgs";
};
chisui = {
email = "chisui.pd@gmail.com";
github = "chisui";
githubId = 4526429;
name = "Philipp Dargel";
source = "nixpkgs";
};
chris-martin = {
email = "ch.martin@gmail.com";
github = "chris-martin";
githubId = 399718;
name = "Chris Martin";
source = "nixpkgs";
};
christoph-heiss = {
email = "christoph@c8h4.io";
github = "christoph-heiss";
githubId = 7571069;
keys = [
{
fingerprint = "9C56 1D64 30B2 8D6B DCBC 9CEB 73D5 E7FD EE3D E49A";
}
];
name = "Christoph Heiss";
source = "nixpkgs";
};
chuangzhu = {
email = "nixos@chuang.cz";
github = "chuangzhu";
githubId = 31200881;
keys = [
{
fingerprint = "5D03 A5E6 0754 A3E3 CA57 5037 E838 CED8 1CFF D3F9";
}
];
name = "Chuang Zhu";
source = "nixpkgs";
};
ckgxrg-salt = {
email = "ckgxrg@ckgxrg.io";
github = "ckgxrg-salt";
githubId = 165614491;
name = "ckgxrg";
source = "nixpkgs";
};
cmacrae = {
email = "hi@cmacr.ae";
github = "cmacrae";
githubId = 3392199;
name = "Calum MacRae";
source = "nixpkgs";
};
colonelpanic8 = {
email = "IvanMalison@gmail.com";
github = "colonelpanic8";
githubId = 1246619;
name = "Ivan Malison";
source = "nixpkgs";
};
considerate = {
email = "viktor.kronvall@gmail.com";
github = "considerate";
githubId = 217918;
name = "Viktor Kronvall";
source = "nixpkgs";
};
cpcloud = {
github = "cpcloud";
githubId = 417981;
name = "Phillip Cloud";
source = "nixpkgs";
};
cwyc = {
email = "hello@cwyc.page";
github = "cwyc";
githubId = 16950437;
name = "cwyc";
source = "nixpkgs";
};
cyntheticfox = {
email = "cyntheticfox@gh0st.sh";
github = "cyntheticfox";
githubId = 17628961;
keys = [
{
fingerprint = "73C1 C5DF 51E7 BB92 85E9 A262 5960 278C E235 F821";
}
];
matrix = "@houstdav000:gh0st.ems.host";
name = "Cynthia Fox";
source = "nixpkgs";
};
d-brasher = {
github = "d-brasher";
githubId = 175485311;
name = "D. Brasher";
source = "nixpkgs";
};
d-dervishi = {
email = "david.dervishi@epfl.ch";
github = "d-dervishi";
githubId = 61125355;
keys = [
{
fingerprint = "4C92 E3B0 21B5 5562 A1E0 CE3D B1C0 12F0 E769 7195";
longKeyId = "rsa4096/0xB1C012F0E7697195";
}
];
name = "David Dervishi";
source = "home-manager";
};
damidoug = {
email = "contact@damidoug.dev";
github = "damidoug";
githubId = 75175586;
name = "Douglas Damiano";
source = "nixpkgs";
};
danjujan = {
email = "44864658+danjujan@users.noreply.github.com";
github = "danjujan";
githubId = 44864658;
name = "Jan Schmitz";
source = "home-manager";
};
dawidsowa = {
email = "dawid_sowa@posteo.net";
github = "dawidsowa";
githubId = 49904992;
name = "Dawid Sowa";
source = "nixpkgs";
};
delafthi = {
email = "delafthi@pm.me";
github = "delafthi";
githubId = 50531499;
keys = [
{
fingerprint = "6DBB 0BB9 AEE6 2C2A 8059 7E1C 0092 6686 9818 63CB";
}
];
matrix = "@delafthi:matrix.org";
name = "Thierry Delafontaine";
source = "nixpkgs";
};
dermetfan = {
email = "serverkorken@gmail.com";
github = "dermetfan";
githubId = 4956158;
name = "Robin Stumm";
source = "nixpkgs";
};
diniamo = {
email = "diniamo53@gmail.com";
github = "diniamo";
githubId = 55629891;
name = "diniamo";
source = "nixpkgs";
};
donovanglover = {
github = "donovanglover";
githubId = 2374245;
keys = [
{
fingerprint = "EE7D 158E F9E7 660E 0C33 86B2 8FC5 F7D9 0A5D 8F4D";
}
];
name = "Donovan Glover";
source = "nixpkgs";
};
dosten = {
email = "diego@saintesteben.me";
github = "dosten";
githubId = 510842;
name = "Diego Saint Esteben";
source = "home-manager";
};
drupol = {
email = "pol.dellaiera@protonmail.com";
github = "drupol";
githubId = 252042;
keys = [
{
fingerprint = "85F3 72DF 4AF3 EF13 ED34 72A3 0AAF 2901 E804 0715";
}
];
matrix = "@drupol:matrix.org";
name = "Pol Dellaiera";
source = "nixpkgs";
};
dschrempf = {
email = "dominik.schrempf@gmail.com";
github = "dschrempf";
githubId = 5596239;
keys = [
{
fingerprint = "62BC E2BD 49DF ECC7 35C7 E153 875F 2BCF 163F 1B29";
}
];
name = "Dominik Schrempf";
source = "nixpkgs";
};
dsoverlord = {
email = "dsoverlord@vk.com";
github = "dsoverlord";
githubId = 78819443;