aboutsummaryrefslogtreecommitdiff
path: root/lib/nixos-min-modules.nix
blob: 9f296b845e5aaa9795f67621d143068bb761b19b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
[
  #"/config/debug-info.nix"
  "/config/fonts/fontconfig.nix"
  "/config/fonts/fontdir.nix"
  "/config/fonts/fonts.nix"
  #"/config/fonts/ghostscript.nix"
  "/config/xdg/autostart.nix"
  "/config/xdg/icons.nix"
  "/config/xdg/menus.nix"
  "/config/xdg/mime.nix"
  "/config/xdg/portal.nix"
  "/config/xdg/portals/wlr.nix"
  "/config/xdg/portals/lxqt.nix"
  #"/config/appstream.nix"
  #"/config/console.nix"
  "/config/xdg/sounds.nix"
  #"/config/gtk/gtk-icon-cache.nix"
  #"/config/gnu.nix"
  "/config/i18n.nix"
  "/config/iproute2.nix"
  #"/config/krb5/default.nix"
  #"/config/ldap.nix"
  "/config/locale.nix"
  "/config/malloc.nix"
  #"/config/mysql.nix"
  "/config/networking.nix"
  #"/config/no-x-libs.nix"
  #"/config/nsswitch.nix"
  "/config/power-management.nix"
  "/config/pulseaudio.nix"
  "/config/qt5.nix"
  "/config/resolvconf.nix"
  "/config/shells-environment.nix"
  "/config/swap.nix"
  "/config/sysctl.nix"
  "/config/system-environment.nix"
  "/config/system-path.nix"
  "/config/terminfo.nix"
  #"/config/unix-odbc-drivers.nix"
  "/config/users-groups.nix"
  "/config/vte.nix"
  "/config/zram.nix"
  #"/hardware/acpilight.nix"
  "/hardware/all-firmware.nix"
  #"/hardware/bladeRF.nix"
  #"/hardware/brillo.nix"
  #"/hardware/ckb-next.nix"
  #"/hardware/cpu/amd-microcode.nix"
  #"/hardware/cpu/intel-microcode.nix"
  #"/hardware/cpu/intel-sgx.nix"
  #"/hardware/corectrl.nix"
  #"/hardware/digitalbitbox.nix"
  "/hardware/device-tree.nix"
  #"/hardware/gkraken.nix"
  #"/hardware/flirc.nix"
  #"/hardware/gpgsmartcards.nix"
  #"/hardware/i2c.nix"
  #"/hardware/hackrf.nix"
  #"/hardware/sensor/hddtemp.nix"
  #"/hardware/sensor/iio.nix"
  #"/hardware/keyboard/teck.nix"
  #"/hardware/keyboard/uhk.nix"
  #"/hardware/keyboard/zsa.nix"
  #"/hardware/ksm.nix"
  #"/hardware/ledger.nix"
  #"/hardware/logitech.nix"
  #"/hardware/mcelog.nix"
  #"/hardware/network/ath-user-regd.nix"
  #"/hardware/network/b43.nix"
  #"/hardware/network/intel-2200bg.nix"
  #"/hardware/new-lg4ff.nix"
  #"/hardware/nitrokey.nix"
  "/hardware/opengl.nix"
  #"/hardware/openrazer.nix"
  #"/hardware/pcmcia.nix"
  "/hardware/printers.nix"
  #"/hardware/raid/hpsa.nix"
  #"/hardware/rtl-sdr.nix"
  #"/hardware/saleae-logic.nix"
  #"/hardware/steam-hardware.nix"
  #"/hardware/system-76.nix"
  #"/hardware/tuxedo-keyboard.nix"
  #"/hardware/ubertooth.nix"
  #"/hardware/usb-wwan.nix"
  #"/hardware/onlykey/default.nix"
  #"/hardware/opentabletdriver.nix"
  #"/hardware/sata.nix"
  #"/hardware/wooting.nix"
  "/hardware/uinput.nix"
  #"/hardware/video/amdgpu-pro.nix"
  #"/hardware/video/capture/mwprocapture.nix"
  #"/hardware/video/bumblebee.nix"
  #"/hardware/video/displaylink.nix"
  #"/hardware/video/hidpi.nix"
  #"/hardware/video/nvidia.nix"
  #"/hardware/video/switcheroo-control.nix"
  #"/hardware/video/uvcvideo/default.nix"
  #"/hardware/video/webcam/facetimehd.nix"
  #"/hardware/xone.nix"
  #"/hardware/xpadneo.nix"
  #"/i18n/input-method/default.nix"
  #"/i18n/input-method/fcitx.nix"
  #"/i18n/input-method/fcitx5.nix"
  #"/i18n/input-method/hime.nix"
  #"/i18n/input-method/ibus.nix"
  #"/i18n/input-method/nabi.nix"
  #"/i18n/input-method/uim.nix"
  #"/i18n/input-method/kime.nix"
  #"/installer/tools/tools.nix"
  "/misc/assertions.nix"
  "/misc/crashdump.nix"
  "/misc/documentation.nix"
  "/misc/extra-arguments.nix"
  #"/misc/ids.nix"
  "/misc/lib.nix"
  #"/misc/label.nix"
  #"/misc/locate.nix"
  #"/misc/man-db.nix"
  #"/misc/mandoc.nix"
  #"/misc/meta.nix"
  "/misc/nixpkgs.nix"
  #"/misc/passthru.nix"
  #"/misc/version.nix"
  #"/misc/wordlist.nix"
  #"/misc/nixops-autoluks.nix"
  #"/programs/_1password.nix"
  #"/programs/_1password-gui.nix"
  #"/programs/adb.nix"
  #"/programs/appgate-sdp.nix"
  #"/programs/atop.nix"
  #"/programs/ausweisapp.nix"
  #"/programs/autojump.nix"
  #"/programs/bandwhich.nix"
  "/programs/bash/bash.nix"
  "/programs/bash/bash-completion.nix"
  "/programs/bash/ls-colors.nix"
  #"/programs/bash/undistract-me.nix"
  #"/programs/bash-my-aws.nix"
  #"/programs/bcc.nix"
  #"/programs/browserpass.nix"
  #"/programs/calls.nix"
  #"/programs/captive-browser.nix"
  #"/programs/ccache.nix"
  #"/programs/cdemu.nix"
  #"/programs/cfs-zen-tweaks.nix"
  #"/programs/chromium.nix"
  #"/programs/cnping.nix"
  #"/programs/command-not-found/command-not-found.nix"
  #"/programs/criu.nix"
  "/programs/dconf.nix"
  #"/programs/digitalbitbox/default.nix"
  #"/programs/dmrconfig.nix"
  #"/programs/droidcam.nix"
  #"/programs/environment.nix"
  "/programs/evince.nix"
  #"/programs/extra-container.nix"
  "/programs/feedbackd.nix"
  "/programs/file-roller.nix"
  #"/programs/firejail.nix"
  #"/programs/fish.nix"
  #"/programs/flashrom.nix"
  #"/programs/flexoptix-app.nix"
  #"/programs/freetds.nix"
  #"/programs/fuse.nix"
  #"/programs/gamemode.nix"
  "/programs/geary.nix"
  #"/programs/git.nix"
  "/programs/gnome-disks.nix"
  #"/programs/gnome-documents.nix"
  "/programs/gnome-terminal.nix"
  #"/programs/gpaste.nix"
  #"/programs/gnupg.nix"
  #"/programs/gphoto2.nix"
  #"/programs/haguichi.nix"
  #"/programs/hamster.nix"
  #"/programs/htop.nix"
  #"/programs/iftop.nix"
  #"/programs/iotop.nix"
  #"/programs/java.nix"
  #"/programs/k40-whisperer.nix"
  #"/programs/kclock.nix"
  #"/programs/k3b.nix"
  #"/programs/kdeconnect.nix"
  #"/programs/kbdlight.nix"
  #"/programs/less.nix"
  #"/programs/liboping.nix"
  #"/programs/light.nix"
  #"/programs/mosh.nix"
  #"/programs/mininet.nix"
  #"/programs/msmtp.nix"
  #"/programs/mtr.nix"
  #"/programs/nano.nix"
  #"/programs/nbd.nix"
  #"/programs/nix-ld.nix"
  #"/programs/neovim.nix"
  #"/programs/nethoscope.nix"
  "/programs/nm-applet.nix"
  #"/programs/nncp.nix"
  #"/programs/npm.nix"
  #"/programs/noisetorch.nix"
  #"/programs/oblogout.nix"
  #"/programs/openvpn3.nix"
  #"/programs/pantheon-tweaks.nix"
  #"/programs/partition-manager.nix"
  #"/programs/plotinus.nix"
  #"/programs/proxychains.nix"
  #"/programs/qt5ct.nix"
  #"/programs/rust-motd.nix"
  #"/programs/screen.nix"
  #"/programs/sedutil.nix"
  "/programs/seahorse.nix"
  #"/programs/slock.nix"
  #"/programs/shadow.nix"
  #"/programs/spacefm.nix"
  #"/programs/singularity.nix"
  "/programs/ssh.nix"
  #"/programs/sysdig.nix"
  #"/programs/systemtap.nix"
  #"/programs/starship.nix"
  #"/programs/steam.nix"
  #"/programs/streamdeck-ui.nix"
  #"/programs/sway.nix"
  "/programs/system-config-printer.nix"
  #"/programs/thefuck.nix"
  "/programs/thunar.nix"
  #"/programs/tmux.nix"
  #"/programs/traceroute.nix"
  #"/programs/tsm-client.nix"
  #"/programs/turbovnc.nix"
  #"/programs/udevil.nix"
  #"/programs/usbtop.nix"
  "/programs/vim.nix"
  #"/programs/wavemon.nix"
  #"/programs/waybar.nix"
  #"/programs/weylus.nix"
  #"/programs/wireshark.nix"
  #"/programs/wshowkeys.nix"
  "/programs/xfconf.nix"
  #"/programs/xfs_quota.nix"
  #"/programs/xonsh.nix"
  #"/programs/xss-lock.nix"
  #"/programs/xwayland.nix"
  #"/programs/yabar.nix"
  #"/programs/zmap.nix"
  #"/programs/zsh/oh-my-zsh.nix"
  "/programs/zsh/zsh.nix"
  "/programs/zsh/zsh-autoenv.nix"
  "/programs/zsh/zsh-autosuggestions.nix"
  "/programs/zsh/zsh-syntax-highlighting.nix"
  #"/rename.nix"
  #"/security/acme"
  "/security/apparmor.nix"
  #"/security/audit.nix"
  #"/security/auditd.nix"
  #"/security/ca.nix"
  #"/security/chromium-suid-sandbox.nix"
  #"/security/dhparams.nix"
  #"/security/duosec.nix"
  #"/security/google_oslogin.nix"
  #"/security/lock-kernel-modules.nix"
  #"/security/misc.nix"
  #"/security/oath.nix"
  "/security/pam.nix"
  "/security/pam_usb.nix"
  "/security/pam_mount.nix"
  #"/security/please.nix"
  "/security/polkit.nix"
  "/security/rngd.nix"
  "/security/rtkit.nix"
  "/security/wrappers/default.nix"
  "/security/sudo.nix"
  #"/security/doas.nix"
  #"/security/systemd-confinement.nix"
  #"/security/tpm2.nix"
  #"/services/admin/meshcentral.nix"
  #"/services/admin/oxidized.nix"
  #"/services/admin/pgadmin.nix"
  #"/services/admin/salt/master.nix"
  #"/services/admin/salt/minion.nix"
  #"/services/amqp/activemq/default.nix"
  #"/services/amqp/rabbitmq.nix"
  #"/services/audio/alsa.nix"
  #"/services/audio/botamusique.nix"
  #"/services/audio/hqplayerd.nix"
  #"/services/audio/icecast.nix"
  #"/services/audio/jack.nix"
  #"/services/audio/jmusicbot.nix"
  #"/services/audio/liquidsoap.nix"
  #"/services/audio/mpd.nix"
  #"/services/audio/mpdscribble.nix"
  #"/services/audio/mopidy.nix"
  #"/services/audio/networkaudiod.nix"
  #"/services/audio/roon-bridge.nix"
  #"/services/audio/navidrome.nix"
  #"/services/audio/roon-server.nix"
  #"/services/audio/slimserver.nix"
  #"/services/audio/snapserver.nix"
  #"/services/audio/squeezelite.nix"
  #"/services/audio/spotifyd.nix"
  #"/services/audio/ympd.nix"
  #"/services/backup/automysqlbackup.nix"
  #"/services/backup/bacula.nix"
  #"/services/backup/borgbackup.nix"
  #"/services/backup/borgmatic.nix"
  #"/services/backup/btrbk.nix"
  #"/services/backup/duplicati.nix"
  #"/services/backup/duplicity.nix"
  #"/services/backup/mysql-backup.nix"
  #"/services/backup/postgresql-backup.nix"
  #"/services/backup/postgresql-wal-receiver.nix"
  #"/services/backup/restic.nix"
  #"/services/backup/restic-rest-server.nix"
  #"/services/backup/rsnapshot.nix"
  #"/services/backup/sanoid.nix"
  #"/services/backup/syncoid.nix"
  #"/services/backup/tarsnap.nix"
  #"/services/backup/tsm.nix"
  #"/services/backup/zfs-replication.nix"
  #"/services/backup/znapzend.nix"
  #"/services/blockchain/ethereum/geth.nix"
  #"/services/backup/zrepl.nix"
  #"/services/cluster/corosync/default.nix"
  #"/services/cluster/hadoop/default.nix"
  #"/services/cluster/k3s/default.nix"
  #"/services/cluster/kubernetes/addons/dns.nix"
  #"/services/cluster/kubernetes/addon-manager.nix"
  #"/services/cluster/kubernetes/apiserver.nix"
  #"/services/cluster/kubernetes/controller-manager.nix"
  #"/services/cluster/kubernetes/default.nix"
  #"/services/cluster/kubernetes/flannel.nix"
  #"/services/cluster/kubernetes/kubelet.nix"
  #"/services/cluster/kubernetes/pki.nix"
  #"/services/cluster/kubernetes/proxy.nix"
  #"/services/cluster/kubernetes/scheduler.nix"
  #"/services/cluster/pacemaker/default.nix"
  #"/services/cluster/patroni/default.nix"
  #"/services/cluster/spark/default.nix"
  #"/services/computing/boinc/client.nix"
  #"/services/computing/foldingathome/client.nix"
  #"/services/computing/slurm/slurm.nix"
  #"/services/computing/torque/mom.nix"
  #"/services/computing/torque/server.nix"
  #"/services/continuous-integration/buildbot/master.nix"
  #"/services/continuous-integration/buildbot/worker.nix"
  #"/services/continuous-integration/buildkite-agents.nix"
  #"/services/continuous-integration/hail.nix"
  #"/services/continuous-integration/hercules-ci-agent/default.nix"
  #"/services/continuous-integration/hydra/default.nix"
  #"/services/continuous-integration/github-runner.nix"
  #"/services/continuous-integration/github-runners.nix"
  #"/services/continuous-integration/gitlab-runner.nix"
  #"/services/continuous-integration/gocd-agent/default.nix"
  #"/services/continuous-integration/gocd-server/default.nix"
  #"/services/continuous-integration/jenkins/default.nix"
  #"/services/continuous-integration/jenkins/job-builder.nix"
  #"/services/continuous-integration/jenkins/slave.nix"
  #"/services/databases/aerospike.nix"
  #"/services/databases/cassandra.nix"
  #"/services/databases/clickhouse.nix"
  #"/services/databases/cockroachdb.nix"
  #"/services/databases/couchdb.nix"
  #"/services/databases/dragonflydb.nix"
  #"/services/databases/dgraph.nix"
  #"/services/databases/firebird.nix"
  #"/services/databases/foundationdb.nix"
  #"/services/databases/hbase-standalone.nix"
  #"/services/databases/influxdb.nix"
  #"/services/databases/influxdb2.nix"
  #"/services/databases/memcached.nix"
  #"/services/databases/monetdb.nix"
  #"/services/databases/mongodb.nix"
  #"/services/databases/mysql.nix"
  #"/services/databases/neo4j.nix"
  #"/services/databases/openldap.nix"
  #"/services/databases/opentsdb.nix"
  #"/services/databases/pgmanage.nix"
  #"/services/databases/postgresql.nix"
  #"/services/databases/redis.nix"
  #"/services/databases/victoriametrics.nix"
  "/services/desktops/accountsservice.nix"
  "/services/desktops/bamf.nix"
  "/services/desktops/blueman.nix"
  #"/services/desktops/cpupower-gui.nix"
  "/services/desktops/dleyna-renderer.nix"
  "/services/desktops/dleyna-server.nix"
  #"/services/desktops/espanso.nix"
  #"/services/desktops/flatpak.nix"
  "/services/desktops/geoclue2.nix"
  "/services/desktops/gsignond.nix"
  "/services/desktops/gvfs.nix"
  #"/services/desktops/malcontent.nix"
  "/services/desktops/pipewire/pipewire.nix"
  "/services/desktops/pipewire/pipewire-media-session.nix"
  "/services/desktops/pipewire/wireplumber.nix"
  "/services/desktops/gnome/at-spi2-core.nix"
  "/services/desktops/gnome/evolution-data-server.nix"
  "/services/desktops/gnome/glib-networking.nix"
  "/services/desktops/gnome/gnome-browser-connector.nix"
  "/services/desktops/gnome/gnome-initial-setup.nix"
  "/services/desktops/gnome/gnome-keyring.nix"
  "/services/desktops/gnome/gnome-online-accounts.nix"
  "/services/desktops/gnome/gnome-online-miners.nix"
  "/services/desktops/gnome/gnome-remote-desktop.nix"
  "/services/desktops/gnome/gnome-settings-daemon.nix"
  "/services/desktops/gnome/gnome-user-share.nix"
  "/services/desktops/gnome/rygel.nix"
  "/services/desktops/gnome/sushi.nix"
  "/services/desktops/gnome/tracker.nix"
  "/services/desktops/gnome/tracker-miners.nix"
  #"/services/desktops/neard.nix"
  #"/services/desktops/profile-sync-daemon.nix"
  "/services/desktops/system-config-printer.nix"
  #"/services/desktops/telepathy.nix"
  "/services/desktops/tumbler.nix"
  "/services/desktops/zeitgeist.nix"
  #"/services/development/bloop.nix"
  #"/services/development/blackfire.nix"
  #"/services/development/distccd.nix"
  #"/services/development/hoogle.nix"
  #"/services/development/jupyter/default.nix"
  #"/services/development/jupyterhub/default.nix"
  #"/services/development/rstudio-server/default.nix"
  #"/services/development/lorri.nix"
  #"/services/development/zammad.nix"
  #"/services/display-managers/greetd.nix"
  #"/services/editors/emacs.nix"
  #"/services/editors/infinoted.nix"
  #"/services/editors/haste.nix"
  #"/services/finance/odoo.nix"
  #"/services/games/asf.nix"
  #"/services/games/crossfire-server.nix"
  #"/services/games/deliantra-server.nix"
  #"/services/games/factorio.nix"
  #"/services/games/freeciv.nix"
  #"/services/games/minecraft-server.nix"
  #"/services/games/minetest-server.nix"
  #"/services/games/openarena.nix"
  #"/services/games/quake3-server.nix"
  #"/services/games/teeworlds.nix"
  #"/services/games/terraria.nix"
  #"/services/hardware/acpid.nix"
  #"/services/hardware/actkbd.nix"
  #"/services/hardware/argonone.nix"
  #"/services/hardware/auto-cpufreq.nix"
  "/services/hardware/bluetooth.nix"
  "/services/hardware/bolt.nix"
  #"/services/hardware/brltty.nix"
  #"/services/hardware/ddccontrol.nix"
  #"/services/hardware/fancontrol.nix"
  #"/services/hardware/freefall.nix"
  "/services/hardware/fwupd.nix"
  #"/services/hardware/illum.nix"
  #"/services/hardware/interception-tools.nix"
  #"/services/hardware/irqbalance.nix"
  #"/services/hardware/joycond.nix"
  #"/services/hardware/kanata.nix"
  #"/services/hardware/lcd.nix"
  #"/services/hardware/lirc.nix"
  #"/services/hardware/nvidia-optimus.nix"
  #"/services/hardware/openrgb.nix"
  #"/services/hardware/pcscd.nix"
  #"/services/hardware/pommed.nix"
  "/services/hardware/power-profiles-daemon.nix"
  #"/services/hardware/rasdaemon.nix"
  #"/services/hardware/ratbagd.nix"
  #"/services/hardware/sane.nix"
  #"/services/hardware/sane_extra_backends/brscan4.nix"
  #"/services/hardware/sane_extra_backends/brscan5.nix"
  #"/services/hardware/sane_extra_backends/dsseries.nix"
  #"/services/hardware/spacenavd.nix"
  #"/services/hardware/tcsd.nix"
  #"/services/hardware/tlp.nix"
  #"/services/hardware/thinkfan.nix"
  #"/services/hardware/throttled.nix"
  #"/services/hardware/trezord.nix"
  #"/services/hardware/triggerhappy.nix"
  "/services/hardware/udev.nix"
  "/services/hardware/udisks2.nix"
  "/services/hardware/upower.nix"
  #"/services/hardware/usbmuxd.nix"
  #"/services/hardware/usbrelayd.nix"
  #"/services/hardware/thermald.nix"
  #"/services/hardware/undervolt.nix"
  #"/services/hardware/vdr.nix"
  #"/services/home-automation/home-assistant.nix"
  #"/services/home-automation/zigbee2mqtt.nix"
  #"/services/logging/SystemdJournal2Gelf.nix"
  #"/services/logging/awstats.nix"
  #"/services/logging/filebeat.nix"
  #"/services/logging/fluentd.nix"
  #"/services/logging/graylog.nix"
  #"/services/logging/heartbeat.nix"
  #"/services/logging/journalbeat.nix"
  #"/services/logging/journaldriver.nix"
  #"/services/logging/journalwatch.nix"
  #"/services/logging/klogd.nix"
  #"/services/logging/logcheck.nix"
  "/services/logging/logrotate.nix"
  #"/services/logging/logstash.nix"
  #"/services/logging/promtail.nix"
  #"/services/logging/rsyslogd.nix"
  #"/services/logging/syslog-ng.nix"
  #"/services/logging/syslogd.nix"
  #"/services/logging/vector.nix"
  #"/services/mail/clamsmtp.nix"
  #"/services/mail/davmail.nix"
  #"/services/mail/dkimproxy-out.nix"
  #"/services/mail/dovecot.nix"
  #"/services/mail/dspam.nix"
  #"/services/mail/exim.nix"
  #"/services/mail/listmonk.nix"
  #"/services/mail/maddy.nix"
  #"/services/mail/mail.nix"
  #"/services/mail/mailcatcher.nix"
  #"/services/mail/mailhog.nix"
  #"/services/mail/mailman.nix"
  #"/services/mail/mlmmj.nix"
  #"/services/mail/offlineimap.nix"
  #"/services/mail/opendkim.nix"
  #"/services/mail/opensmtpd.nix"
  #"/services/mail/pfix-srsd.nix"
  #"/services/mail/postfix.nix"
  #"/services/mail/postfixadmin.nix"
  #"/services/mail/postsrsd.nix"
  #"/services/mail/postgrey.nix"
  #"/services/mail/public-inbox.nix"
  #"/services/mail/spamassassin.nix"
  #"/services/mail/rspamd.nix"
  #"/services/mail/rss2email.nix"
  #"/services/mail/roundcube.nix"
  #"/services/mail/schleuder.nix"
  #"/services/mail/sympa.nix"
  #"/services/mail/nullmailer.nix"
  #"/services/matrix/appservice-discord.nix"
  #"/services/matrix/appservice-irc.nix"
  #"/services/matrix/conduit.nix"
  #"/services/matrix/dendrite.nix"
  #"/services/matrix/mautrix-facebook.nix"
  #"/services/matrix/mautrix-telegram.nix"
  #"/services/matrix/mjolnir.nix"
  #"/services/matrix/pantalaimon.nix"
  #"/services/matrix/synapse.nix"
  #"/services/misc/ananicy.nix"
  #"/services/misc/airsonic.nix"
  #"/services/misc/ankisyncd.nix"
  #"/services/misc/apache-kafka.nix"
  #"/services/misc/autofs.nix"
  #"/services/misc/autorandr.nix"
  #"/services/misc/bazarr.nix"
  #"/services/misc/beanstalkd.nix"
  #"/services/misc/bees.nix"
  #"/services/misc/bepasty.nix"
  #"/services/misc/canto-daemon.nix"
  #"/services/misc/calibre-server.nix"
  #"/services/misc/cfdyndns.nix"
  #"/services/misc/clipmenu.nix"
  #"/services/misc/clipcat.nix"
  #"/services/misc/cpuminer-cryptonight.nix"
  #"/services/misc/cgminer.nix"
  #"/services/misc/confd.nix"
  #"/services/misc/devmon.nix"
  #"/services/misc/dictd.nix"
  #"/services/misc/duckling.nix"
  #"/services/misc/dwm-status.nix"
  #"/services/misc/dysnomia.nix"
  #"/services/misc/disnix.nix"
  #"/services/misc/docker-registry.nix"
  #"/services/misc/domoticz.nix"
  #"/services/misc/errbot.nix"
  #"/services/misc/etcd.nix"
  #"/services/misc/etebase-server.nix"
  #"/services/misc/etesync-dav.nix"
  #"/services/misc/ethminer.nix"
  #"/services/misc/exhibitor.nix"
  #"/services/misc/felix.nix"
  #"/services/misc/freeswitch.nix"
  #"/services/misc/fstrim.nix"
  #"/services/misc/gammu-smsd.nix"
  #"/services/misc/geoipupdate.nix"
  #"/services/misc/gitea.nix"
  #"./services/misc/gitit.nix"
  #"/services/misc/gitlab.nix"
  #"/services/misc/gitolite.nix"
  #"/services/misc/gitweb.nix"
  #"/services/misc/gogs.nix"
  #"/services/misc/gollum.nix"
  #"/services/misc/gpsd.nix"
  #"/services/misc/headphones.nix"
  #"/services/misc/heisenbridge.nix"
  #"/services/misc/greenclip.nix"
  #"/services/misc/ihaskell.nix"
  #"/services/misc/input-remapper.nix"
  #"/services/misc/irkerd.nix"
  #"/services/misc/jackett.nix"
  #"/services/misc/jellyfin.nix"
  #"/services/misc/klipper.nix"
  #"/services/misc/languagetool.nix"
  #"/services/misc/logkeys.nix"
  #"/services/misc/leaps.nix"
  #"/services/misc/lidarr.nix"
  #"/services/misc/libreddit.nix"
  #"/services/misc/lifecycled.nix"
  #"/services/misc/mame.nix"
  #"/services/misc/mbpfan.nix"
  #"/services/misc/mediatomb.nix"
  #"/services/misc/metabase.nix"
  #"/services/misc/moonraker.nix"
  #"/services/misc/mx-puppet-discord.nix"
  #"/services/misc/n8n.nix"
  #"/services/misc/nitter.nix"
  "/services/misc/nix-daemon.nix"
  "/services/misc/nix-gc.nix"
  "/services/misc/nix-optimise.nix"
  "/services/misc/nix-ssh-serve.nix"
  #"/services/misc/novacomd.nix"
  #"/services/misc/ntfy-sh.nix"
  #"/services/misc/nzbget.nix"
  #"/services/misc/nzbhydra2.nix"
  #"/services/misc/octoprint.nix"
  #"/services/misc/ombi.nix"
  #"/services/misc/osrm.nix"
  #"/services/misc/owncast.nix"
  #"/services/misc/packagekit.nix"
  #"/services/misc/paperless.nix"
  #"/services/misc/parsoid.nix"
  #"/services/misc/persistent-evdev.nix"
  #"/services/misc/plex.nix"
  #"/services/misc/plikd.nix"
  #"/services/misc/podgrab.nix"
  #"/services/misc/polaris.nix"
  #"/services/misc/portunus.nix"
  #"/services/misc/prowlarr.nix"
  #"/services/misc/tautulli.nix"
  #"/services/misc/pinnwand.nix"
  #"/services/misc/pykms.nix"
  #"/services/misc/radarr.nix"
  #"/services/misc/redmine.nix"
  #"/services/misc/rippled.nix"
  #"/services/misc/ripple-data-api.nix"
  #"/services/misc/rmfakecloud.nix"
  #"/services/misc/serviio.nix"
  #"/services/misc/safeeyes.nix"
  #"/services/misc/sdrplay.nix"
  #"/services/misc/sickbeard.nix"
  #"/services/misc/signald.nix"
  #"/services/misc/siproxd.nix"
  #"/services/misc/snapper.nix"
  #"/services/misc/sonarr.nix"
  #"/services/misc/sourcehut"
  #"/services/misc/spice-vdagentd.nix"
  #"/services/misc/spice-webdavd.nix"
  #"/services/misc/ssm-agent.nix"
  #"/services/misc/sssd.nix"
  #"/services/misc/subsonic.nix"
  #"/services/misc/sundtek.nix"
  #"/services/misc/svnserve.nix"
  #"/services/misc/synergy.nix"
  "/services/misc/sysprof.nix"
  #"/services/misc/tandoor-recipes.nix"
  #"/services/misc/taskserver"
  #"/services/misc/tiddlywiki.nix"
  #"/services/misc/tp-auto-kbbl.nix"
  #"/services/misc/tzupdate.nix"
  #"/services/misc/uhub.nix"
  #"/services/misc/weechat.nix"
  #"/services/misc/xmr-stak.nix"
  #"/services/misc/xmrig.nix"
  #"/services/misc/zoneminder.nix"
  #"/services/misc/zookeeper.nix"
  #"/services/monitoring/alerta.nix"
  #"/services/monitoring/apcupsd.nix"
  #"/services/monitoring/arbtt.nix"
  #"/services/monitoring/bosun.nix"
  #"/services/monitoring/cadvisor.nix"
  #"/services/monitoring/collectd.nix"
  #"/services/monitoring/das_watchdog.nix"
  #"/services/monitoring/datadog-agent.nix"
  #"/services/monitoring/do-agent.nix"
  #"/services/monitoring/fusion-inventory.nix"
  #"/services/monitoring/grafana.nix"
  #"/services/monitoring/grafana-agent.nix"
  #"/services/monitoring/grafana-image-renderer.nix"
  #"/services/monitoring/grafana-reporter.nix"
  #"/services/monitoring/graphite.nix"
  #"/services/monitoring/hdaps.nix"
  #"/services/monitoring/heapster.nix"
  #"/services/monitoring/incron.nix"
  #"/services/monitoring/kapacitor.nix"
  #"/services/monitoring/karma.nix"
  #"/services/monitoring/kthxbye.nix"
  #"/services/monitoring/loki.nix"
  #"/services/monitoring/longview.nix"
  #"/services/monitoring/mackerel-agent.nix"
  #"/services/monitoring/metricbeat.nix"
  #"/services/monitoring/mimir.nix"
  #"/services/monitoring/monit.nix"
  #"/services/monitoring/munin.nix"
  #"/services/monitoring/nagios.nix"
  #"/services/monitoring/netdata.nix"
  #"/services/monitoring/parsedmarc.nix"
  #"/services/monitoring/prometheus/default.nix"
  #"/services/monitoring/prometheus/alertmanager.nix"
  #"/services/monitoring/prometheus/exporters.nix"
  #"/services/monitoring/prometheus/pushgateway.nix"
  #"/services/monitoring/prometheus/sachet.nix"
  #"/services/monitoring/prometheus/xmpp-alerts.nix"
  #"/services/monitoring/riemann.nix"
  #"/services/monitoring/riemann-dash.nix"
  #"/services/monitoring/riemann-tools.nix"
  #"/services/monitoring/scollector.nix"
  #"/services/monitoring/smartd.nix"
  #"/services/monitoring/sysstat.nix"
  #"/services/monitoring/teamviewer.nix"
  #"/services/monitoring/telegraf.nix"
  #"/services/monitoring/thanos.nix"
  #"/services/monitoring/tuptime.nix"
  #"/services/monitoring/unifi-poller.nix"
  #"/services/monitoring/ups.nix"
  #"/services/monitoring/uptime.nix"
  #"/services/monitoring/vmagent.nix"
  #"/services/monitoring/uptime-kuma.nix"
  #"/services/monitoring/vnstat.nix"
  #"/services/monitoring/zabbix-agent.nix"
  #"/services/monitoring/zabbix-proxy.nix"
  #"/services/monitoring/zabbix-server.nix"
  #"/services/network-filesystems/cachefilesd.nix"
  #"/services/network-filesystems/davfs2.nix"
  #"/services/network-filesystems/drbd.nix"
  #"/services/network-filesystems/glusterfs.nix"
  #"/services/network-filesystems/kbfs.nix"
  #"/services/network-filesystems/kubo.nix"
  #"/services/network-filesystems/litestream/default.nix"
  #"/services/network-filesystems/netatalk.nix"
  #"/services/network-filesystems/nfsd.nix"
  #"/services/network-filesystems/moosefs.nix"
  #"/services/network-filesystems/openafs/client.nix"
  #"/services/network-filesystems/openafs/server.nix"
  #"/services/network-filesystems/orangefs/server.nix"
  #"/services/network-filesystems/orangefs/client.nix"
  #"/services/network-filesystems/rsyncd.nix"
  #"/services/network-filesystems/samba.nix"
  #"/services/network-filesystems/samba-wsdd.nix"
  #"/services/network-filesystems/tahoe.nix"
  #"/services/network-filesystems/diod.nix"
  #"/services/network-filesystems/u9fs.nix"
  #"/services/network-filesystems/webdav.nix"
  #"/services/network-filesystems/webdav-server-rs.nix"
  #"/services/network-filesystems/yandex-disk.nix"
  #"/services/network-filesystems/xtreemfs.nix"
  #"/services/network-filesystems/ceph.nix"
  #"/services/networking/3proxy.nix"
  #"/services/networking/adguardhome.nix"
  #"/services/networking/amuled.nix"
  #"/services/networking/antennas.nix"
  #"/services/networking/aria2.nix"
  #"/services/networking/asterisk.nix"
  #"/services/networking/atftpd.nix"
  "/services/networking/avahi-daemon.nix"
  #"/services/networking/babeld.nix"
  #"/services/networking/bee.nix"
  #"/services/networking/bee-clef.nix"
  #"/services/networking/biboumi.nix"
  #"/services/networking/bind.nix"
  #"/services/networking/bitcoind.nix"
  #"/services/networking/autossh.nix"
  #"/services/networking/bird.nix"
  #"/services/networking/bird-lg.nix"
  #"/services/networking/bitlbee.nix"
  #"/services/networking/blockbook-frontend.nix"
  #"/services/networking/blocky.nix"
  #"/services/networking/charybdis.nix"
  #"/services/networking/cjdns.nix"
  #"/services/networking/cloudflare-dyndns.nix"
  #"/services/networking/cntlm.nix"
  #"/services/networking/connman.nix"
  #"/services/networking/consul.nix"
  #"/services/networking/coredns.nix"
  #"/services/networking/corerad.nix"
  #"/services/networking/coturn.nix"
  #"/services/networking/create_ap.nix"
  #"/services/networking/croc.nix"
  #"/services/networking/dante.nix"
  #"/services/networking/ddclient.nix"
  "/services/networking/dhcpcd.nix"
  "/services/networking/dhcpd.nix"
  #"/services/networking/dnscache.nix"
  #"/services/networking/dnscrypt-proxy2.nix"
  #"/services/networking/dnscrypt-wrapper.nix"
  #"/services/networking/dnsdist.nix"
  #"/services/networking/dnsmasq.nix"
  #"/services/networking/doh-proxy-rust.nix"
  #"/services/networking/ncdns.nix"
  #"/services/networking/nomad.nix"
  #"/services/networking/ejabberd.nix"
  #"/services/networking/envoy.nix"
  #"/services/networking/epmd.nix"
  #"/services/networking/ergo.nix"
  #"/services/networking/ergochat.nix"
  #"/services/networking/eternal-terminal.nix"
  #"/services/networking/expressvpn.nix"
  #"/services/networking/fakeroute.nix"
  #"/services/networking/ferm.nix"
  #"/services/networking/firefox-syncserver.nix"
  #"/services/networking/fireqos.nix"
  "/services/networking/firewall.nix"
  #"/services/networking/flannel.nix"
  #"/services/networking/freenet.nix"
  #"/services/networking/freeradius.nix"
  #"/services/networking/frr.nix"
  #"/services/networking/gateone.nix"
  #"/services/networking/gdomap.nix"
  #"/services/networking/ghostunnel.nix"
  #"/services/networking/git-daemon.nix"
  #"/services/networking/globalprotect-vpn.nix"
  #"/services/networking/gnunet.nix"
  #"/services/networking/go-autoconfig.nix"
  #"/services/networking/go-neb.nix"
  #"/services/networking/go-shadowsocks2.nix"
  #"/services/networking/gobgpd.nix"
  #"/services/networking/gvpe.nix"
  #"/services/networking/hans.nix"
  #"/services/networking/haproxy.nix"
  #"/services/networking/headscale.nix"
  #"/services/networking/hostapd.nix"
  #"/services/networking/htpdate.nix"
  #"/services/networking/https-dns-proxy.nix"
  #"/services/networking/hylafax/default.nix"
  #"/services/networking/i2pd.nix"
  #"/services/networking/i2p.nix"
  #"/services/networking/icecream/scheduler.nix"
  #"/services/networking/icecream/daemon.nix"
  #"/services/networking/inspircd.nix"
  #"/services/networking/iodine.nix"
  #"/services/networking/iperf3.nix"
  #"/services/networking/ircd-hybrid/default.nix"
  #"/services/networking/iscsi/initiator.nix"
  #"/services/networking/iscsi/root-initiator.nix"
  #"/services/networking/iscsi/target.nix"
  "/services/networking/iwd.nix"
  #"/services/networking/jibri/default.nix"
  #"/services/networking/jicofo.nix"
  #"/services/networking/jitsi-videobridge.nix"
  #"/services/networking/kea.nix"
  #"/services/networking/keepalived/default.nix"
  #"/services/networking/keybase.nix"
  #"/services/networking/knot.nix"
  #"/services/networking/kresd.nix"
  #"/services/networking/lambdabot.nix"
  #"/services/networking/libreswan.nix"
  #"/services/networking/lldpd.nix"
  #"/services/networking/logmein-hamachi.nix"
  #"/services/networking/lokinet.nix"
  #"/services/networking/lxd-image-server.nix"
  #"/services/networking/magic-wormhole-mailbox-server.nix"
  #"/services/networking/matterbridge.nix"
  #"/services/networking/mjpg-streamer.nix"
  #"/services/networking/minidlna.nix"
  #"/services/networking/miniupnpd.nix"
  #"/services/networking/mosquitto.nix"
  #"/services/networking/monero.nix"
  #"/services/networking/morty.nix"
  #"/services/networking/mozillavpn.nix"
  #"/services/networking/miredo.nix"
  "/services/networking/mstpd.nix"
  #"/services/networking/mtprotoproxy.nix"
  #"/services/networking/mtr-exporter.nix"
  #"/services/networking/mullvad-vpn.nix"
  #"/services/networking/multipath.nix"
  #"/services/networking/murmur.nix"
  #"/services/networking/mxisd.nix"
  #"/services/networking/namecoind.nix"
  #"/services/networking/nar-serve.nix"
  #"/services/networking/nat.nix"
  #"/services/networking/nats.nix"
  #"/services/networking/nbd.nix"
  #"/services/networking/ndppd.nix"
  #"/services/networking/nebula.nix"
  #"/services/networking/netbird.nix"
  "/services/networking/networkmanager.nix"
  #"/services/networking/nextdns.nix"
  #"/services/networking/nftables.nix"
  #"/services/networking/ngircd.nix"
  #"/services/networking/nghttpx/default.nix"
  "/services/networking/nix-serve.nix"
  "/services/networking/nix-store-gcs-proxy.nix"
  #"/services/networking/nixops-dns.nix"
  #"/services/networking/nntp-proxy.nix"
  #"/services/networking/nsd.nix"
  #"/services/networking/ntopng.nix"
  #"/services/networking/ntp/chrony.nix"
  #"/services/networking/ntp/ntpd.nix"
  #"/services/networking/ntp/openntpd.nix"
  #"/services/networking/nullidentdmod.nix"
  #"/services/networking/nylon.nix"
  #"/services/networking/ocserv.nix"
  #"/services/networking/ofono.nix"
  #"/services/networking/oidentd.nix"
  #"/services/networking/onedrive.nix"
  #"/services/networking/openconnect.nix"
  #"/services/networking/openvpn.nix"
  #"/services/networking/ostinato.nix"
  #"/services/networking/owamp.nix"
  #"/services/networking/pdnsd.nix"
  #"/services/networking/pixiecore.nix"
  #"/services/networking/pleroma.nix"
  #"/services/networking/polipo.nix"
  #"/services/networking/powerdns.nix"
  #"/services/networking/pdns-recursor.nix"
  #"/services/networking/pppd.nix"
  #"/services/networking/pptpd.nix"
  #"/services/networking/prayer.nix"
  #"/services/networking/privoxy.nix"
  #"/services/networking/prosody.nix"
  #"/services/networking/quassel.nix"
  #"/services/networking/quorum.nix"
  #"/services/networking/quicktun.nix"
  #"/services/networking/r53-ddns.nix"
  #"/services/networking/radicale.nix"
  #"/services/networking/radvd.nix"
  #"/services/networking/rdnssd.nix"
  #"/services/networking/redsocks.nix"
  #"/services/networking/resilio.nix"
  #"/services/networking/robustirc-bridge.nix"
  #"/services/networking/routedns.nix"
  "/services/networking/rpcbind.nix"
  #"/services/networking/rxe.nix"
  #"/services/networking/sabnzbd.nix"
  #"/services/networking/seafile.nix"
  #"/services/networking/searx.nix"
  #"/services/networking/skydns.nix"
  #"/services/networking/shadowsocks.nix"
  #"/services/networking/shairport-sync.nix"
  #"/services/networking/shellhub-agent.nix"
  #"/services/networking/shorewall.nix"
  #"/services/networking/shorewall6.nix"
  #"/services/networking/shout.nix"
  #"/services/networking/sniproxy.nix"
  #"/services/networking/snowflake-proxy.nix"
  #"/services/networking/smartdns.nix"
  #"/services/networking/smokeping.nix"
  #"/services/networking/softether.nix"
  #"/services/networking/solanum.nix"
  #"/services/networking/soju.nix"
  #"/services/networking/spacecookie.nix"
  #"/services/networking/spiped.nix"
  #"/services/networking/squid.nix"
  #"/services/networking/sslh.nix"
  #"/services/networking/ssh/lshd.nix"
  "/services/networking/ssh/sshd.nix"
  #"/services/networking/strongswan.nix"
  #"/services/networking/strongswan-swanctl/module.nix"
  #"/services/networking/stunnel.nix"
  #"/services/networking/stubby.nix"
  #"/services/networking/supplicant.nix"
  #"/services/networking/supybot.nix"
  #"/services/networking/syncthing.nix"
  #"/services/networking/syncthing-relay.nix"
  #"/services/networking/syncplay.nix"
  #"/services/networking/tailscale.nix"
  #"/services/networking/tcpcrypt.nix"
  #"/services/networking/teamspeak3.nix"
  #"/services/networking/tedicross.nix"
  #"/services/networking/tetrd.nix"
  #"/services/networking/teleport.nix"
  #"/services/networking/thelounge.nix"
  #"/services/networking/tinc.nix"
  #"/services/networking/tinydns.nix"
  #"/services/networking/tftpd.nix"
  #"/services/networking/tmate-ssh-server.nix"
  #"/services/networking/trickster.nix"
  #"/services/networking/tox-bootstrapd.nix"
  #"/services/networking/tox-node.nix"
  #"/services/networking/toxvpn.nix"
  #"/services/networking/tvheadend.nix"
  #"/services/networking/ucarp.nix"
  #"/services/networking/unbound.nix"
  #"/services/networking/unifi.nix"
  #"/services/video/unifi-video.nix"
  #"/services/video/rtsp-simple-server.nix"
  #"/services/networking/uptermd.nix"
  #"/services/networking/v2ray.nix"
  #"/services/networking/vsftpd.nix"
  #"/services/networking/wasabibackend.nix"
  #"/services/networking/websockify.nix"
  #"/services/networking/wg-netmanager.nix"
  #"/services/networking/wg-quick.nix"
  #"/services/networking/wireguard.nix"
  "/services/networking/wpa_supplicant.nix"
  #"/services/networking/xandikos.nix"
  "/services/networking/xinetd.nix"
  #"/services/networking/xl2tpd.nix"
  #"/services/networking/x2goserver.nix"
  #"/services/networking/xrdp.nix"
  #"/services/networking/yggdrasil.nix"
  #"/services/networking/zerobin.nix"
  #"/services/networking/zeronet.nix"
  #"/services/networking/zerotierone.nix"
  #"/services/networking/znc/default.nix"
  "/services/printing/cupsd.nix"
  #"/services/scheduling/atd.nix"
  #"/services/scheduling/cron.nix"
  #"/services/scheduling/fcron.nix"
  #"/services/search/elasticsearch.nix"
  #"/services/search/elasticsearch-curator.nix"
  #"/services/search/hound.nix"
  #"/services/search/kibana.nix"
  #"/services/search/meilisearch.nix"
  #"/services/search/solr.nix"
  #"/services/security/aesmd.nix"
  #"/services/security/certmgr.nix"
  #"/services/security/cfssl.nix"
  #"/services/security/clamav.nix"
  #"/services/security/endlessh-go.nix"
  #"/services/security/fail2ban.nix"
  #"/services/security/fprintd.nix"
  #"/services/security/haka.nix"
  #"/services/security/haveged.nix"
  #"/services/security/hockeypuck.nix"
  #"/services/security/hologram-server.nix"
  #"/services/security/hologram-agent.nix"
  #"/services/security/kanidm.nix"
  #"/services/security/infnoise.nix"
  #"/services/security/munge.nix"
  #"/services/security/nginx-sso.nix"
  #"/services/security/oauth2_proxy.nix"
  #"/services/security/oauth2_proxy_nginx.nix"
  #"/services/security/opensnitch.nix"
  #"/services/security/pass-secret-service.nix"
  #"/services/security/privacyidea.nix"
  #"/services/security/physlock.nix"
  #"/services/security/shibboleth-sp.nix"
  #"/services/security/sks.nix"
  #"/services/security/sshguard.nix"
  #"/services/security/sslmate-agent.nix"
  #"/services/security/step-ca.nix"
  #"/services/security/tor.nix"
  #"/services/security/torify.nix"
  #"/services/security/torsocks.nix"
  #"/services/security/usbguard.nix"
  #"/services/security/vault.nix"
  #"/services/security/vaultwarden/default.nix"
  #"/services/security/yubikey-agent.nix"
  #"/services/system/cachix-agent/default.nix"
  #"/services/system/cloud-init.nix"
  "/services/system/dbus.nix"
  #"/services/system/earlyoom.nix"
  #"/services/system/localtimed.nix"
  #"/services/system/kerberos/default.nix"
  #"/services/system/nscd.nix"
  #"/services/system/saslauthd.nix"
  #"/services/system/self-deploy.nix"
  #"/services/system/systembus-notify.nix"
  #"/services/system/uptimed.nix"
  #"/services/torrent/deluge.nix"
  #"/services/torrent/flexget.nix"
  #"/services/torrent/magnetico.nix"
  #"/services/torrent/opentracker.nix"
  #"/services/torrent/peerflix.nix"
  #"/services/torrent/rtorrent.nix"
  #"/services/torrent/transmission.nix"
  #"/services/tracing/tempo.nix"
  #"/services/ttys/getty.nix"
  #"/services/ttys/gpm.nix"
  #"/services/ttys/kmscon.nix"
  #"/services/wayland/cage.nix"
  #"/services/video/epgstation/default.nix"
  #"/services/video/mirakurun.nix"
  #"/services/video/replay-sorcery.nix"
  #"/services/web-apps/alps.nix"
  #"/services/web-apps/atlassian/confluence.nix"
  #"/services/web-apps/atlassian/crowd.nix"
  #"/services/web-apps/atlassian/jira.nix"
  #"/services/web-apps/bookstack.nix"
  #"/services/web-apps/calibre-web.nix"
  #"/services/web-apps/code-server.nix"
  #"/services/web-apps/baget.nix"
  #"/services/web-apps/changedetection-io.nix"
  #"/services/web-apps/convos.nix"
  #"/services/web-apps/dex.nix"
  #"/services/web-apps/discourse.nix"
  #"/services/web-apps/documize.nix"
  #"/services/web-apps/dokuwiki.nix"
  #"/services/web-apps/dolibarr.nix"
  #"/services/web-apps/engelsystem.nix"
  #"/services/web-apps/ethercalc.nix"
  #"/services/web-apps/fluidd.nix"
  #"/services/web-apps/freshrss.nix"
  #"/services/web-apps/galene.nix"
  #"/services/web-apps/gerrit.nix"
  #"/services/web-apps/gotify-server.nix"
  #"/services/web-apps/grocy.nix"
  #"/services/web-apps/healthchecks.nix"
  #"/services/web-apps/hedgedoc.nix"
  #"/services/web-apps/hledger-web.nix"
  #"/services/web-apps/icingaweb2/icingaweb2.nix"
  #"/services/web-apps/icingaweb2/module-monitoring.nix"
  #"/services/web-apps/ihatemoney"
  #"/services/web-apps/isso.nix"
  #"/services/web-apps/jirafeau.nix"
  #"/services/web-apps/jitsi-meet.nix"
  #"/services/web-apps/keycloak.nix"
  #"/services/web-apps/komga.nix"
  #"/services/web-apps/lemmy.nix"
  #"/services/web-apps/invidious.nix"
  #"/services/web-apps/invoiceplane.nix"
  #"/services/web-apps/limesurvey.nix"
  #"/services/web-apps/mastodon.nix"
  #"/services/web-apps/mattermost.nix"
  #"/services/web-apps/mediawiki.nix"
  #"/services/web-apps/miniflux.nix"
  #"/services/web-apps/moodle.nix"
  #"/services/web-apps/netbox.nix"
  #"/services/web-apps/nextcloud.nix"
  #"/services/web-apps/nexus.nix"
  #"/services/web-apps/nifi.nix"
  #"/services/web-apps/node-red.nix"
  #"/services/web-apps/phylactery.nix"
  #"/services/web-apps/onlyoffice.nix"
  #"/services/web-apps/pict-rs.nix"
  #"/services/web-apps/peertube.nix"
  #"/services/web-apps/plantuml-server.nix"
  #"/services/web-apps/plausible.nix"
  #"/services/web-apps/pgpkeyserver-lite.nix"
  #"/services/web-apps/powerdns-admin.nix"
  #"/services/web-apps/prosody-filer.nix"
  #"/services/web-apps/matomo.nix"
  #"/services/web-apps/openwebrx.nix"
  #"/services/web-apps/outline.nix"
  #"/services/web-apps/restya-board.nix"
  #"/services/web-apps/sogo.nix"
  #"/services/web-apps/rss-bridge.nix"
  #"/services/web-apps/tt-rss.nix"
  #"/services/web-apps/trilium.nix"
  #"/services/web-apps/selfoss.nix"
  #"/services/web-apps/shiori.nix"
  #"/services/web-apps/snipe-it.nix"
  #"/services/web-apps/vikunja.nix"
  #"/services/web-apps/wiki-js.nix"
  #"/services/web-apps/whitebophir.nix"
  #"/services/web-apps/wordpress.nix"
  #"/services/web-apps/writefreely.nix"
  #"/services/web-apps/youtrack.nix"
  #"/services/web-apps/zabbix.nix"
  #"/services/web-servers/agate.nix"
  #"/services/web-servers/apache-httpd/default.nix"
  #"/services/web-servers/caddy/default.nix"
  #"/services/web-servers/darkhttpd.nix"
  #"/services/web-servers/fcgiwrap.nix"
  #"/services/web-servers/hitch/default.nix"
  #"/services/web-servers/hydron.nix"
  #"/services/web-servers/jboss/default.nix"
  #"/services/web-servers/lighttpd/cgit.nix"
  #"/services/web-servers/lighttpd/collectd.nix"
  #"/services/web-servers/lighttpd/default.nix"
  #"/services/web-servers/lighttpd/gitweb.nix"
  #"/services/web-servers/mighttpd2.nix"
  #"/services/web-servers/minio.nix"
  #"/services/web-servers/molly-brown.nix"
  #"/services/web-servers/nginx/default.nix"
  #"/services/web-servers/nginx/gitweb.nix"
  #"/services/web-servers/phpfpm/default.nix"
  #"/services/web-servers/pomerium.nix"
  #"/services/web-servers/unit/default.nix"
  #"/services/web-servers/tomcat.nix"
  #"/services/web-servers/keter"
  #"/services/web-servers/traefik.nix"
  #"/services/web-servers/trafficserver/default.nix"
  #"/services/web-servers/ttyd.nix"
  #"/services/web-servers/uwsgi.nix"
  #"/services/web-servers/varnish/default.nix"
  #"/services/web-servers/zope2.nix"
  #"/services/x11/extra-layouts.nix"
  #"/services/x11/clight.nix"
  "/services/x11/colord.nix"
  #"/services/x11/picom.nix"
  #"/services/x11/unclutter.nix"
  #"/services/x11/unclutter-xfixes.nix"
  #"/services/x11/desktop-managers/default.nix"
  #"/services/x11/display-managers/default.nix"
  #"/services/x11/display-managers/gdm.nix"
  "/services/x11/display-managers/lightdm.nix"
  "/services/x11/display-managers/sddm.nix"
  #"/services/x11/display-managers/slim.nix"
  #"/services/x11/display-managers/startx.nix"
  #"/services/x11/display-managers/sx.nix"
  #"/services/x11/display-managers/xpra.nix"
  #"/services/x11/fractalart.nix"
  "/services/x11/hardware/libinput.nix"
  #"/services/x11/hardware/synaptics.nix"
  #"/services/x11/hardware/wacom.nix"
  #"/services/x11/hardware/digimend.nix"
  #"/services/x11/hardware/cmt.nix"
  "/services/x11/gdk-pixbuf.nix"
  #"/services/x11/imwheel.nix"
  #"/services/x11/redshift.nix"
  "/services/x11/touchegg.nix"
  #"/services/x11/urserver.nix"
  #"/services/x11/urxvtd.nix"
  #"/services/x11/window-managers/awesome.nix"
  #"/services/x11/window-managers/default.nix"
  #"/services/x11/window-managers/clfswm.nix"
  #"/services/x11/window-managers/fluxbox.nix"
  #"/services/x11/window-managers/icewm.nix"
  #"/services/x11/window-managers/bspwm.nix"
  #"/services/x11/window-managers/metacity.nix"
  #"/services/x11/window-managers/none.nix"
  #"/services/x11/window-managers/twm.nix"
  #"/services/x11/window-managers/windowlab.nix"
  #"/services/x11/window-managers/wmii.nix"
  #"/services/x11/window-managers/xmonad.nix"
  #"/services/x11/xautolock.nix"
  #"/services/x11/xbanish.nix"
  #"/services/x11/xfs.nix"
  "/services/x11/xserver.nix"
  #"/system/activation/activation-script.nix"
  #"/system/activation/top-level.nix"
  "/system/boot/binfmt.nix"
  "/system/boot/emergency-mode.nix"
  "/system/boot/grow-partition.nix"
  "/system/boot/initrd-network.nix"
  "/system/boot/initrd-ssh.nix"
  "/system/boot/initrd-openvpn.nix"
  "/system/boot/kernel.nix"
  "/system/boot/kexec.nix"
  #"/system/boot/loader/efi.nix"
  #"/system/boot/loader/generations-dir/generations-dir.nix"
  "/system/boot/loader/generic-extlinux-compatible"
  "/system/boot/loader/grub/grub.nix"
  #"/system/boot/loader/grub/ipxe.nix"
  #"/system/boot/loader/grub/memtest.nix"
  "/system/boot/loader/init-script/init-script.nix"
  #"/system/boot/loader/loader.nix"
  #"/system/boot/loader/raspberrypi/raspberrypi.nix"
  "/system/boot/loader/systemd-boot/systemd-boot.nix"
  #"/system/boot/luksroot.nix"
  "/system/boot/modprobe.nix"
  #"/system/boot/networkd.nix"
  #"/system/boot/plymouth.nix"
  #"/system/boot/resolved.nix"
  "/system/boot/shutdown.nix"
  "/system/boot/stage-1.nix"
  "/system/boot/stage-2.nix"
  "/system/boot/systemd.nix"
  "/system/boot/systemd/coredump.nix"
  "/system/boot/systemd/initrd-secrets.nix"
  "/system/boot/systemd/initrd.nix"
  "/system/boot/systemd/journald.nix"
  "/system/boot/systemd/logind.nix"
  "/system/boot/systemd/nspawn.nix"
  "/system/boot/systemd/oomd.nix"
  "/system/boot/systemd/shutdown.nix"
  "/system/boot/systemd/tmpfiles.nix"
  "/system/boot/systemd/user.nix"
  "/system/boot/timesyncd.nix"
  "/system/boot/tmp.nix"
  "/system/etc/etc-activation.nix"
  #"/tasks/auto-upgrade.nix"
  #"/tasks/bcache.nix"
  #"/tasks/cpu-freq.nix"
  #"/tasks/encrypted-devices.nix"
  "/tasks/filesystems.nix"
  "/tasks/filesystems/apfs.nix"
  "/tasks/filesystems/bcachefs.nix"
  "/tasks/filesystems/btrfs.nix"
  "/tasks/filesystems/cifs.nix"
  "/tasks/filesystems/ecryptfs.nix"
  "/tasks/filesystems/exfat.nix"
  "/tasks/filesystems/ext.nix"
  "/tasks/filesystems/f2fs.nix"
  "/tasks/filesystems/jfs.nix"
  "/tasks/filesystems/nfs.nix"
  "/tasks/filesystems/ntfs.nix"
  #"/tasks/filesystems/reiserfs.nix"
  "/tasks/filesystems/unionfs-fuse.nix"
  #"/tasks/filesystems/vboxsf.nix"
  "/tasks/filesystems/vfat.nix"
  "/tasks/filesystems/xfs.nix"
  "/tasks/filesystems/zfs.nix"
  "/tasks/lvm.nix"
  "/tasks/network-interfaces.nix"
  #"/tasks/network-interfaces-systemd.nix"
  "/tasks/network-interfaces-scripted.nix"
  #"/tasks/scsi-link-power-management.nix"
  #"/tasks/snapraid.nix"
  #"/tasks/stratis.nix"
  "/tasks/swraid.nix"
  #"/tasks/trackpoint.nix"
  #"/tasks/powertop.nix"
  #"/testing/service-runner.nix"
  #"/virtualisation/anbox.nix"
  #"/virtualisation/appvm.nix"
  #"/virtualisation/build-vm.nix"
  #"/virtualisation/container-config.nix"
  #"/virtualisation/containerd.nix"
  "/virtualisation/containers.nix"
  "/virtualisation/nixos-containers.nix"
  "/virtualisation/oci-containers.nix"
  #"/virtualisation/cri-o.nix"
  #"/virtualisation/docker.nix"
  #"/virtualisation/docker-rootless.nix"
  #"/virtualisation/ecs-agent.nix"
  #"/virtualisation/libvirtd.nix"
  #"/virtualisation/lxc.nix"
  #"/virtualisation/lxcfs.nix"
  #"/virtualisation/lxd.nix"
  #"/virtualisation/amazon-options.nix"
  #"/virtualisation/hyperv-guest.nix"
  #"/virtualisation/kvmgt.nix"
  #"/virtualisation/openstack-options.nix"
  #"/virtualisation/openvswitch.nix"
  #"/virtualisation/parallels-guest.nix"
  #"/virtualisation/podman/default.nix"
  #"/virtualisation/qemu-guest-agent.nix"
  #"/virtualisation/spice-usb-redirection.nix"
  #"/virtualisation/virtualbox-guest.nix"
  #"/virtualisation/virtualbox-host.nix"
  #"/virtualisation/vmware-guest.nix"
  #"/virtualisation/vmware-host.nix"
  #"/virtualisation/waydroid.nix"
  #"/virtualisation/xen-dom0.nix"
  #"/virtualisation/xe-guest-utilities.nix"
]