blob: 09e3b8bca694c43eb903c3ce15d9977c86ccec78 (
plain) (
blame)
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
|
bin/nix
bin/nix-build
bin/nix-channel
bin/nix-collect-garbage
bin/nix-copy-closure
bin/nix-daemon
bin/nix-env
bin/nix-hash
bin/nix-instantiate
bin/nix-prefetch-url
bin/nix-shell
bin/nix-store
etc/profile.d/nix-daemon.fish
etc/profile.d/nix-daemon.sh
etc/profile.d/nix.fish
etc/profile.d/nix.sh
etc/rc.d/nix-daemon
include/nix/cmd/built-path.hh
include/nix/cmd/command-installable-value.hh
include/nix/cmd/command.hh
include/nix/cmd/common-eval-args.hh
include/nix/cmd/compatibility-settings.hh
include/nix/cmd/editor-for.hh
include/nix/cmd/installable-attr-path.hh
include/nix/cmd/installable-derived-path.hh
include/nix/cmd/installable-flake.hh
include/nix/cmd/installable-value.hh
include/nix/cmd/installables.hh
include/nix/cmd/legacy.hh
include/nix/cmd/markdown.hh
include/nix/cmd/misc-store-flags.hh
include/nix/cmd/network-proxy.hh
include/nix/cmd/repl-interacter.hh
include/nix/cmd/repl.hh
include/nix/expr/attr-path.hh
include/nix/expr/attr-set.hh
include/nix/expr/config.hh
include/nix/expr/eval-cache.hh
include/nix/expr/eval-error.hh
include/nix/expr/eval-gc.hh
include/nix/expr/eval-inline.hh
include/nix/expr/eval-profiler-settings.hh
include/nix/expr/eval-profiler.hh
include/nix/expr/eval-settings.hh
include/nix/expr/eval.hh
include/nix/expr/function-trace.hh
include/nix/expr/gc-small-vector.hh
include/nix/expr/get-drvs.hh
include/nix/expr/json-to-value.hh
include/nix/expr/nixexpr.hh
include/nix/expr/parser-state.hh
include/nix/expr/primops.hh
include/nix/expr/print-ambiguous.hh
include/nix/expr/print-options.hh
include/nix/expr/print.hh
include/nix/expr/repl-exit-status.hh
include/nix/expr/search-path.hh
include/nix/expr/symbol-table.hh
include/nix/expr/value-to-json.hh
include/nix/expr/value-to-xml.hh
include/nix/expr/value.hh
include/nix/expr/value/context.hh
include/nix/fetchers/attrs.hh
include/nix/fetchers/cache.hh
include/nix/fetchers/fetch-settings.hh
include/nix/fetchers/fetch-to-store.hh
include/nix/fetchers/fetchers.hh
include/nix/fetchers/filtering-source-accessor.hh
include/nix/fetchers/git-lfs-fetch.hh
include/nix/fetchers/git-utils.hh
include/nix/fetchers/input-cache.hh
include/nix/fetchers/registry.hh
include/nix/fetchers/store-path-accessor.hh
include/nix/fetchers/tarball.hh
include/nix/flake/flake.hh
include/nix/flake/flakeref.hh
include/nix/flake/lockfile.hh
include/nix/flake/settings.hh
include/nix/flake/url-name.hh
include/nix/lexer-tab.cc
include/nix/lexer-tab.hh
include/nix/main/common-args.hh
include/nix/main/loggers.hh
include/nix/main/plugin.hh
include/nix/main/progress-bar.hh
include/nix/main/shared.hh
include/nix/parser-tab.cc
include/nix/parser-tab.hh
include/nix/store/binary-cache-store.hh
include/nix/store/build-result.hh
include/nix/store/build/child.hh
include/nix/store/build/derivation-builder.hh
include/nix/store/build/derivation-building-goal.hh
include/nix/store/build/derivation-building-misc.hh
include/nix/store/build/derivation-goal.hh
include/nix/store/build/derivation-trampoline-goal.hh
include/nix/store/build/drv-output-substitution-goal.hh
include/nix/store/build/goal.hh
include/nix/store/build/hook-instance.hh
include/nix/store/build/substitution-goal.hh
include/nix/store/build/worker.hh
include/nix/store/builtins.hh
include/nix/store/builtins/buildenv.hh
include/nix/store/common-protocol-impl.hh
include/nix/store/common-protocol.hh
include/nix/store/common-ssh-store-config.hh
include/nix/store/config.hh
include/nix/store/content-address.hh
include/nix/store/daemon.hh
include/nix/store/derivation-options.hh
include/nix/store/derivations.hh
include/nix/store/derived-path-map.hh
include/nix/store/derived-path.hh
include/nix/store/downstream-placeholder.hh
include/nix/store/filetransfer.hh
include/nix/store/gc-store.hh
include/nix/store/globals.hh
include/nix/store/http-binary-cache-store.hh
include/nix/store/indirect-root-store.hh
include/nix/store/keys.hh
include/nix/store/legacy-ssh-store.hh
include/nix/store/length-prefixed-protocol-helper.hh
include/nix/store/local-binary-cache-store.hh
include/nix/store/local-fs-store.hh
include/nix/store/local-overlay-store.hh
include/nix/store/local-store.hh
include/nix/store/log-store.hh
include/nix/store/machines.hh
include/nix/store/make-content-addressed.hh
include/nix/store/names.hh
include/nix/store/nar-accessor.hh
include/nix/store/nar-info-disk-cache.hh
include/nix/store/nar-info.hh
include/nix/store/outputs-spec.hh
include/nix/store/parsed-derivations.hh
include/nix/store/path-info.hh
include/nix/store/path-references.hh
include/nix/store/path-regex.hh
include/nix/store/path-with-outputs.hh
include/nix/store/path.hh
include/nix/store/pathlocks.hh
include/nix/store/posix-fs-canonicalise.hh
include/nix/store/profiles.hh
include/nix/store/realisation.hh
include/nix/store/references.hh
include/nix/store/remote-fs-accessor.hh
include/nix/store/remote-store-connection.hh
include/nix/store/remote-store.hh
include/nix/store/restricted-store.hh
include/nix/store/s3-binary-cache-store.hh
include/nix/store/s3.hh
include/nix/store/serve-protocol-connection.hh
include/nix/store/serve-protocol-impl.hh
include/nix/store/serve-protocol.hh
include/nix/store/sqlite.hh
include/nix/store/ssh-store.hh
include/nix/store/ssh.hh
include/nix/store/store-api.hh
include/nix/store/store-cast.hh
include/nix/store/store-dir-config.hh
include/nix/store/store-open.hh
include/nix/store/store-reference.hh
include/nix/store/store-registration.hh
include/nix/store/uds-remote-store.hh
include/nix/store/user-lock.hh
include/nix/store/worker-protocol-connection.hh
include/nix/store/worker-protocol-impl.hh
include/nix/store/worker-protocol.hh
include/nix/util/abstract-setting-to-json.hh
include/nix/util/ansicolor.hh
include/nix/util/archive.hh
include/nix/util/args.hh
include/nix/util/args/root.hh
include/nix/util/array-from-string-literal.hh
include/nix/util/base-n.hh
include/nix/util/base-nix-32.hh
include/nix/util/callback.hh
include/nix/util/canon-path.hh
include/nix/util/checked-arithmetic.hh
include/nix/util/chunked-vector.hh
include/nix/util/closure.hh
include/nix/util/comparator.hh
include/nix/util/compression.hh
include/nix/util/compute-levels.hh
include/nix/util/config-global.hh
include/nix/util/config-impl.hh
include/nix/util/configuration.hh
include/nix/util/current-process.hh
include/nix/util/english.hh
include/nix/util/environment-variables.hh
include/nix/util/error.hh
include/nix/util/exec.hh
include/nix/util/executable-path.hh
include/nix/util/exit.hh
include/nix/util/experimental-features.hh
include/nix/util/file-content-address.hh
include/nix/util/file-descriptor.hh
include/nix/util/file-path-impl.hh
include/nix/util/file-path.hh
include/nix/util/file-system.hh
include/nix/util/finally.hh
include/nix/util/fmt.hh
include/nix/util/freebsd-jail.hh
include/nix/util/fs-sink.hh
include/nix/util/git.hh
include/nix/util/hash.hh
include/nix/util/hilite.hh
include/nix/util/json-impls.hh
include/nix/util/json-utils.hh
include/nix/util/logging.hh
include/nix/util/lru-cache.hh
include/nix/util/memory-source-accessor.hh
include/nix/util/monitor-fd.hh
include/nix/util/muxable-pipe.hh
include/nix/util/os-string.hh
include/nix/util/pool.hh
include/nix/util/pos-idx.hh
include/nix/util/pos-table.hh
include/nix/util/position.hh
include/nix/util/posix-source-accessor.hh
include/nix/util/processes.hh
include/nix/util/ref.hh
include/nix/util/regex-combinators.hh
include/nix/util/repair-flag.hh
include/nix/util/serialise.hh
include/nix/util/signals-impl.hh
include/nix/util/signals.hh
include/nix/util/signature/local-keys.hh
include/nix/util/signature/signer.hh
include/nix/util/sort.hh
include/nix/util/source-accessor.hh
include/nix/util/source-path.hh
include/nix/util/split.hh
include/nix/util/std-hash.hh
include/nix/util/strings-inline.hh
include/nix/util/strings.hh
include/nix/util/suggestions.hh
include/nix/util/sync.hh
include/nix/util/tarfile.hh
include/nix/util/terminal.hh
include/nix/util/thread-pool.hh
include/nix/util/topo-sort.hh
include/nix/util/types.hh
include/nix/util/unix-domain-socket.hh
include/nix/util/url-parts.hh
include/nix/util/url.hh
include/nix/util/users.hh
include/nix/util/util.hh
include/nix/util/variant-wrapper.hh
include/nix/util/xml-writer.hh
include/nix_api_expr.h
include/nix_api_expr_internal.h
include/nix_api_external.h
include/nix_api_fetchers.h
include/nix_api_fetchers_internal.hh
include/nix_api_flake.h
include/nix_api_flake_internal.hh
include/nix_api_main.h
include/nix_api_store.h
include/nix_api_store_internal.h
include/nix_api_util.h
include/nix_api_util_internal.h
include/nix_api_value.h
lib/libnixcmd.so
lib/libnixexpr.so
lib/libnixexprc.so
lib/libnixfetchers.so
lib/libnixfetchersc.so
lib/libnixflake.so
lib/libnixflakec.so
lib/libnixmain.so
lib/libnixmainc.so
lib/libnixstore.so
lib/libnixstorec.so
lib/libnixutil.so
lib/libnixutilc.so
libdata/pkgconfig/nix-cmd.pc
libdata/pkgconfig/nix-expr-c.pc
libdata/pkgconfig/nix-expr.pc
libdata/pkgconfig/nix-fetchers-c.pc
libdata/pkgconfig/nix-fetchers.pc
libdata/pkgconfig/nix-flake-c.pc
libdata/pkgconfig/nix-flake.pc
libdata/pkgconfig/nix-main-c.pc
libdata/pkgconfig/nix-main.pc
libdata/pkgconfig/nix-store-c.pc
libdata/pkgconfig/nix-store.pc
libdata/pkgconfig/nix-util-c.pc
libdata/pkgconfig/nix-util.pc
libexec/nix/build-remote
share/bash-completion/completions/nix
share/fish/vendor_completions.d/nix.fish
%%DATADIR%%/add-nixbld-users
share/zsh/site-functions/_nix
share/zsh/site-functions/run-help-nix
%%PORTDOCS%%%%DOCSDIR%%/manual/.nojekyll
%%PORTDOCS%%%%DOCSDIR%%/manual/404.html
%%PORTDOCS%%%%DOCSDIR%%/manual/FontAwesome/css/font-awesome.css
%%PORTDOCS%%%%DOCSDIR%%/manual/FontAwesome/fonts/FontAwesome.ttf
%%PORTDOCS%%%%DOCSDIR%%/manual/FontAwesome/fonts/fontawesome-webfont.eot
%%PORTDOCS%%%%DOCSDIR%%/manual/FontAwesome/fonts/fontawesome-webfont.svg
%%PORTDOCS%%%%DOCSDIR%%/manual/FontAwesome/fonts/fontawesome-webfont.ttf
%%PORTDOCS%%%%DOCSDIR%%/manual/FontAwesome/fonts/fontawesome-webfont.woff
%%PORTDOCS%%%%DOCSDIR%%/manual/FontAwesome/fonts/fontawesome-webfont.woff2
%%PORTDOCS%%%%DOCSDIR%%/manual/SUMMARY.md.in
%%PORTDOCS%%%%DOCSDIR%%/manual/_redirects
%%PORTDOCS%%%%DOCSDIR%%/manual/advanced-topics/cores-vs-jobs.html
%%PORTDOCS%%%%DOCSDIR%%/manual/advanced-topics/diff-hook.html
%%PORTDOCS%%%%DOCSDIR%%/manual/advanced-topics/distributed-builds.html
%%PORTDOCS%%%%DOCSDIR%%/manual/advanced-topics/eval-profiler.html
%%PORTDOCS%%%%DOCSDIR%%/manual/advanced-topics/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/advanced-topics/post-build-hook.html
%%PORTDOCS%%%%DOCSDIR%%/manual/architecture/architecture.html
%%PORTDOCS%%%%DOCSDIR%%/manual/ayu-highlight.css
%%PORTDOCS%%%%DOCSDIR%%/manual/book.js
%%PORTDOCS%%%%DOCSDIR%%/manual/c-api.html
%%PORTDOCS%%%%DOCSDIR%%/manual/clipboard.min.js
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/conf-file.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/env-common.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/experimental-commands.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/files.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/files/channels.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/files/default-nix-expression.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/files/manifest.json.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/files/manifest.nix.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/files/profiles.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/main-commands.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-build.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-bundle.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-config-check.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-config-show.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-config.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-copy.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-daemon.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-derivation-add.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-derivation-show.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-derivation.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-develop.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-edit.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-env-shell.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-env.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-eval.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake-archive.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake-check.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake-clone.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake-info.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake-init.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake-lock.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake-metadata.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake-new.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake-prefetch-inputs.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake-prefetch.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake-show.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake-update.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-flake.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-fmt.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-formatter-build.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-formatter-run.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-formatter.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-hash-convert.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-hash-file.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-hash-path.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-hash-to-base16.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-hash-to-base32.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-hash-to-base64.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-hash-to-sri.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-hash.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-help-stores.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-help.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-key-convert-secret-to-public.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-key-generate-secret.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-key.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-log.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-nar-cat.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-nar-dump-path.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-nar-ls.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-nar-pack.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-nar.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-path-info.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-print-dev-env.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-profile-add.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-profile-diff-closures.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-profile-history.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-profile-list.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-profile-remove.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-profile-rollback.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-profile-upgrade.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-profile-wipe-history.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-profile.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-realisation-info.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-realisation.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-registry-add.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-registry-list.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-registry-pin.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-registry-remove.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-registry.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-repl.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-run.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-search.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-add-file.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-add-path.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-add.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-cat.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-copy-log.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-copy-sigs.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-delete.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-diff-closures.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-dump-path.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-gc.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-info.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-ls.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-make-content-addressed.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-optimise.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-path-from-hash-part.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-prefetch-file.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-repair.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-sign.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store-verify.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-store.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-upgrade-nix.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/new-cli/nix3-why-depends.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-build.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-channel.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-collect-garbage.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-copy-closure.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-daemon.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-env.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-env/delete-generations.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-env/install.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-env/list-generations.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-env/query.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-env/rollback.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-env/set-flag.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-env/set.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-env/switch-generation.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-env/switch-profile.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-env/uninstall.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-env/upgrade.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-hash.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-instantiate.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-prefetch-url.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-shell.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/add-fixed.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/add.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/delete.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/dump-db.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/dump.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/export.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/gc.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/generate-binary-cache-key.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/import.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/load-db.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/optimise.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/print-env.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/query.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/read-log.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/realise.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/repair-path.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/restore.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/serve.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/verify-path.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/nix-store/verify.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/opt-common.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/utilities.html
%%PORTDOCS%%%%DOCSDIR%%/manual/command-ref/xp-features.json
%%PORTDOCS%%%%DOCSDIR%%/manual/css/chrome.css
%%PORTDOCS%%%%DOCSDIR%%/manual/css/general.css
%%PORTDOCS%%%%DOCSDIR%%/manual/css/print.css
%%PORTDOCS%%%%DOCSDIR%%/manual/css/variables.css
%%PORTDOCS%%%%DOCSDIR%%/manual/custom.css
%%PORTDOCS%%%%DOCSDIR%%/manual/development/benchmarking.html
%%PORTDOCS%%%%DOCSDIR%%/manual/development/building.html
%%PORTDOCS%%%%DOCSDIR%%/manual/development/cli-guideline.html
%%PORTDOCS%%%%DOCSDIR%%/manual/development/contributing.html
%%PORTDOCS%%%%DOCSDIR%%/manual/development/cxx.html
%%PORTDOCS%%%%DOCSDIR%%/manual/development/debugging.html
%%PORTDOCS%%%%DOCSDIR%%/manual/development/documentation.html
%%PORTDOCS%%%%DOCSDIR%%/manual/development/experimental-features.html
%%PORTDOCS%%%%DOCSDIR%%/manual/development/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/development/json-guideline.html
%%PORTDOCS%%%%DOCSDIR%%/manual/development/testing.html
%%PORTDOCS%%%%DOCSDIR%%/manual/elasticlunr.min.js
%%PORTDOCS%%%%DOCSDIR%%/manual/favicon.png
%%PORTDOCS%%%%DOCSDIR%%/manual/favicon.svg
%%PORTDOCS%%%%DOCSDIR%%/manual/figures/user-environments.png
%%PORTDOCS%%%%DOCSDIR%%/manual/figures/user-environments.sxd
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/OPEN-SANS-LICENSE.txt
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/SOURCE-CODE-PRO-LICENSE.txt
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/fonts.css
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/open-sans-v17-all-charsets-300.woff2
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/open-sans-v17-all-charsets-300italic.woff2
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/open-sans-v17-all-charsets-600.woff2
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/open-sans-v17-all-charsets-600italic.woff2
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/open-sans-v17-all-charsets-700.woff2
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/open-sans-v17-all-charsets-700italic.woff2
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/open-sans-v17-all-charsets-800.woff2
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/open-sans-v17-all-charsets-800italic.woff2
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/open-sans-v17-all-charsets-italic.woff2
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/open-sans-v17-all-charsets-regular.woff2
%%PORTDOCS%%%%DOCSDIR%%/manual/fonts/source-code-pro-v11-all-charsets-500.woff2
%%PORTDOCS%%%%DOCSDIR%%/manual/glossary.html
%%PORTDOCS%%%%DOCSDIR%%/manual/highlight.css
%%PORTDOCS%%%%DOCSDIR%%/manual/highlight.js
%%PORTDOCS%%%%DOCSDIR%%/manual/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/building-source.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/env-variables.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/installing-binary.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/installing-docker.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/installing-source.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/multi-user.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/nix-security.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/obtaining-source.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/prerequisites-source.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/single-user.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/supported-platforms.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/uninstall.html
%%PORTDOCS%%%%DOCSDIR%%/manual/installation/upgrading.html
%%PORTDOCS%%%%DOCSDIR%%/manual/introduction.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/advanced-attributes.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/builtins.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/constructs/lookup-path.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/derivations.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/evaluation.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/identifiers.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/import-from-derivation.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/operators.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/scope.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/string-context.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/string-interpolation.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/string-literals.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/syntax.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/types.html
%%PORTDOCS%%%%DOCSDIR%%/manual/language/variables.html
%%PORTDOCS%%%%DOCSDIR%%/manual/mark.min.js
%%PORTDOCS%%%%DOCSDIR%%/manual/package-management/binary-cache-substituter.html
%%PORTDOCS%%%%DOCSDIR%%/manual/package-management/garbage-collection.html
%%PORTDOCS%%%%DOCSDIR%%/manual/package-management/garbage-collector-roots.html
%%PORTDOCS%%%%DOCSDIR%%/manual/package-management/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/package-management/profiles.html
%%PORTDOCS%%%%DOCSDIR%%/manual/package-management/sharing-packages.html
%%PORTDOCS%%%%DOCSDIR%%/manual/package-management/ssh-substituter.html
%%PORTDOCS%%%%DOCSDIR%%/manual/print.html
%%PORTDOCS%%%%DOCSDIR%%/manual/protocols/derivation-aterm.html
%%PORTDOCS%%%%DOCSDIR%%/manual/protocols/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/protocols/json/derivation.html
%%PORTDOCS%%%%DOCSDIR%%/manual/protocols/json/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/protocols/json/store-object-info.html
%%PORTDOCS%%%%DOCSDIR%%/manual/protocols/nix-archive.html
%%PORTDOCS%%%%DOCSDIR%%/manual/protocols/store-path.html
%%PORTDOCS%%%%DOCSDIR%%/manual/protocols/tarball-fetcher.html
%%PORTDOCS%%%%DOCSDIR%%/manual/quick-start.html
%%PORTDOCS%%%%DOCSDIR%%/manual/redirects.js
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.10.1.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.10.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.11.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.12.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.13.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.14.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.15.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.16.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.5.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.6.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.7.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.8.1.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.8.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.9.1.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.9.2.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-0.9.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.0.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.1.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.10.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.11.10.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.11.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.2.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.3.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.4.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.5.2.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.5.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.6.1.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.6.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.7.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.8.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-1.9.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.0.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.1.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.10.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.11.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.12.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.13.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.14.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.15.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.16.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.17.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.18.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.19.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.2.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.20.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.21.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.22.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.23.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.24.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.25.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.26.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.27.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.28.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.29.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.3.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.30.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.31.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.4.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.5.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.6.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.7.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.8.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-2.9.html
%%PORTDOCS%%%%DOCSDIR%%/manual/release-notes/rl-next.html
%%PORTDOCS%%%%DOCSDIR%%/manual/searcher.js
%%PORTDOCS%%%%DOCSDIR%%/manual/searchindex.js
%%PORTDOCS%%%%DOCSDIR%%/manual/store/building.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/derivation/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/derivation/outputs/content-address.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/derivation/outputs/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/derivation/outputs/input-address.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/file-system-object.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/file-system-object/content-address.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/store-object.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/store-object/content-address.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/store-path.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/types/dummy-store.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/types/experimental-local-overlay-store.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/types/experimental-ssh-store-with-filesystem-mounted.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/types/experimental-ssh-store.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/types/http-binary-cache-store.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/types/index.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/types/index.md.in
%%PORTDOCS%%%%DOCSDIR%%/manual/store/types/local-binary-cache-store.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/types/local-daemon-store.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/types/local-store.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/types/s3-binary-cache-store.html
%%PORTDOCS%%%%DOCSDIR%%/manual/store/types/ssh-store.html
%%PORTDOCS%%%%DOCSDIR%%/manual/toc.html
%%PORTDOCS%%%%DOCSDIR%%/manual/toc.js
%%PORTDOCS%%%%DOCSDIR%%/manual/tomorrow-night.css
%%PORTDOCS%%share/man/man1/nix-build.1.gz
%%PORTDOCS%%share/man/man1/nix-channel.1.gz
%%PORTDOCS%%share/man/man1/nix-collect-garbage.1.gz
%%PORTDOCS%%share/man/man1/nix-copy-closure.1.gz
%%PORTDOCS%%share/man/man1/nix-env-delete-generations.1.gz
%%PORTDOCS%%share/man/man1/nix-env-install.1.gz
%%PORTDOCS%%share/man/man1/nix-env-list-generations.1.gz
%%PORTDOCS%%share/man/man1/nix-env-query.1.gz
%%PORTDOCS%%share/man/man1/nix-env-rollback.1.gz
%%PORTDOCS%%share/man/man1/nix-env-set-flag.1.gz
%%PORTDOCS%%share/man/man1/nix-env-set.1.gz
%%PORTDOCS%%share/man/man1/nix-env-switch-generation.1.gz
%%PORTDOCS%%share/man/man1/nix-env-switch-profile.1.gz
%%PORTDOCS%%share/man/man1/nix-env-uninstall.1.gz
%%PORTDOCS%%share/man/man1/nix-env-upgrade.1.gz
%%PORTDOCS%%share/man/man1/nix-env.1.gz
%%PORTDOCS%%share/man/man1/nix-hash.1.gz
%%PORTDOCS%%share/man/man1/nix-instantiate.1.gz
%%PORTDOCS%%share/man/man1/nix-prefetch-url.1.gz
%%PORTDOCS%%share/man/man1/nix-shell.1.gz
%%PORTDOCS%%share/man/man1/nix-store-add-fixed.1.gz
%%PORTDOCS%%share/man/man1/nix-store-add.1.gz
%%PORTDOCS%%share/man/man1/nix-store-delete.1.gz
%%PORTDOCS%%share/man/man1/nix-store-dump-db.1.gz
%%PORTDOCS%%share/man/man1/nix-store-dump.1.gz
%%PORTDOCS%%share/man/man1/nix-store-export.1.gz
%%PORTDOCS%%share/man/man1/nix-store-gc.1.gz
%%PORTDOCS%%share/man/man1/nix-store-generate-binary-cache-key.1.gz
%%PORTDOCS%%share/man/man1/nix-store-import.1.gz
%%PORTDOCS%%share/man/man1/nix-store-load-db.1.gz
%%PORTDOCS%%share/man/man1/nix-store-optimise.1.gz
%%PORTDOCS%%share/man/man1/nix-store-print-env.1.gz
%%PORTDOCS%%share/man/man1/nix-store-query.1.gz
%%PORTDOCS%%share/man/man1/nix-store-read-log.1.gz
%%PORTDOCS%%share/man/man1/nix-store-realise.1.gz
%%PORTDOCS%%share/man/man1/nix-store-repair-path.1.gz
%%PORTDOCS%%share/man/man1/nix-store-restore.1.gz
%%PORTDOCS%%share/man/man1/nix-store-serve.1.gz
%%PORTDOCS%%share/man/man1/nix-store-verify-path.1.gz
%%PORTDOCS%%share/man/man1/nix-store-verify.1.gz
%%PORTDOCS%%share/man/man1/nix-store.1.gz
%%PORTDOCS%%share/man/man1/nix.1.gz
%%PORTDOCS%%share/man/man1/nix3-build.1.gz
%%PORTDOCS%%share/man/man1/nix3-bundle.1.gz
%%PORTDOCS%%share/man/man1/nix3-config-check.1.gz
%%PORTDOCS%%share/man/man1/nix3-config-show.1.gz
%%PORTDOCS%%share/man/man1/nix3-config.1.gz
%%PORTDOCS%%share/man/man1/nix3-copy.1.gz
%%PORTDOCS%%share/man/man1/nix3-daemon.1.gz
%%PORTDOCS%%share/man/man1/nix3-derivation-add.1.gz
%%PORTDOCS%%share/man/man1/nix3-derivation-show.1.gz
%%PORTDOCS%%share/man/man1/nix3-derivation.1.gz
%%PORTDOCS%%share/man/man1/nix3-develop.1.gz
%%PORTDOCS%%share/man/man1/nix3-edit.1.gz
%%PORTDOCS%%share/man/man1/nix3-env-shell.1.gz
%%PORTDOCS%%share/man/man1/nix3-eval.1.gz
%%PORTDOCS%%share/man/man1/nix3-flake-archive.1.gz
%%PORTDOCS%%share/man/man1/nix3-flake-check.1.gz
%%PORTDOCS%%share/man/man1/nix3-flake-clone.1.gz
%%PORTDOCS%%share/man/man1/nix3-flake-info.1.gz
%%PORTDOCS%%share/man/man1/nix3-flake-init.1.gz
%%PORTDOCS%%share/man/man1/nix3-flake-lock.1.gz
%%PORTDOCS%%share/man/man1/nix3-flake-metadata.1.gz
%%PORTDOCS%%share/man/man1/nix3-flake-new.1.gz
%%PORTDOCS%%share/man/man1/nix3-flake-prefetch.1.gz
%%PORTDOCS%%share/man/man1/nix3-flake-show.1.gz
%%PORTDOCS%%share/man/man1/nix3-flake-update.1.gz
%%PORTDOCS%%share/man/man1/nix3-flake.1.gz
%%PORTDOCS%%share/man/man1/nix3-fmt.1.gz
%%PORTDOCS%%share/man/man1/nix3-hash-convert.1.gz
%%PORTDOCS%%share/man/man1/nix3-hash-file.1.gz
%%PORTDOCS%%share/man/man1/nix3-hash-path.1.gz
%%PORTDOCS%%share/man/man1/nix3-hash-to-base16.1.gz
%%PORTDOCS%%share/man/man1/nix3-hash-to-base32.1.gz
%%PORTDOCS%%share/man/man1/nix3-hash-to-base64.1.gz
%%PORTDOCS%%share/man/man1/nix3-hash-to-sri.1.gz
%%PORTDOCS%%share/man/man1/nix3-hash.1.gz
%%PORTDOCS%%share/man/man1/nix3-help-stores.1.gz
%%PORTDOCS%%share/man/man1/nix3-help.1.gz
%%PORTDOCS%%share/man/man1/nix3-key-convert-secret-to-public.1.gz
%%PORTDOCS%%share/man/man1/nix3-key-generate-secret.1.gz
%%PORTDOCS%%share/man/man1/nix3-key.1.gz
%%PORTDOCS%%share/man/man1/nix3-log.1.gz
%%PORTDOCS%%share/man/man1/nix3-nar-cat.1.gz
%%PORTDOCS%%share/man/man1/nix3-nar-dump-path.1.gz
%%PORTDOCS%%share/man/man1/nix3-nar-ls.1.gz
%%PORTDOCS%%share/man/man1/nix3-nar-pack.1.gz
%%PORTDOCS%%share/man/man1/nix3-nar.1.gz
%%PORTDOCS%%share/man/man1/nix3-path-info.1.gz
%%PORTDOCS%%share/man/man1/nix3-print-dev-env.1.gz
%%PORTDOCS%%share/man/man1/nix3-profile-add.1.gz
%%PORTDOCS%%share/man/man1/nix3-profile-diff-closures.1.gz
%%PORTDOCS%%share/man/man1/nix3-profile-history.1.gz
%%PORTDOCS%%share/man/man1/nix3-profile-list.1.gz
%%PORTDOCS%%share/man/man1/nix3-profile-remove.1.gz
%%PORTDOCS%%share/man/man1/nix3-profile-rollback.1.gz
%%PORTDOCS%%share/man/man1/nix3-profile-upgrade.1.gz
%%PORTDOCS%%share/man/man1/nix3-profile-wipe-history.1.gz
%%PORTDOCS%%share/man/man1/nix3-profile.1.gz
%%PORTDOCS%%share/man/man1/nix3-realisation-info.1.gz
%%PORTDOCS%%share/man/man1/nix3-realisation.1.gz
%%PORTDOCS%%share/man/man1/nix3-registry-add.1.gz
%%PORTDOCS%%share/man/man1/nix3-registry-list.1.gz
%%PORTDOCS%%share/man/man1/nix3-registry-pin.1.gz
%%PORTDOCS%%share/man/man1/nix3-registry-remove.1.gz
%%PORTDOCS%%share/man/man1/nix3-registry.1.gz
%%PORTDOCS%%share/man/man1/nix3-repl.1.gz
%%PORTDOCS%%share/man/man1/nix3-run.1.gz
%%PORTDOCS%%share/man/man1/nix3-search.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-add-file.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-add-path.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-add.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-cat.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-copy-log.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-copy-sigs.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-delete.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-diff-closures.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-dump-path.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-gc.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-info.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-ls.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-make-content-addressed.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-optimise.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-path-from-hash-part.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-prefetch-file.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-repair.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-sign.1.gz
%%PORTDOCS%%share/man/man1/nix3-store-verify.1.gz
%%PORTDOCS%%share/man/man1/nix3-store.1.gz
%%PORTDOCS%%share/man/man1/nix3-upgrade-nix.1.gz
%%PORTDOCS%%share/man/man1/nix3-why-depends.1.gz
%%PORTDOCS%%share/man/man5/nix-profiles.5.gz
%%PORTDOCS%%share/man/man5/nix.conf.5.gz
%%PORTDOCS%%share/man/man8/nix-daemon.8.gz
|