Skip to content

Commit

Permalink
Update gh-pages
Browse files Browse the repository at this point in the history
Store path: /nix/store/5rba4mh6mh3vzhbks09x2jy2w3b0ciqw-nix-2.18.1-doc/share/doc/nix/manual
  • Loading branch information
hercules-ci[bot] committed Nov 18, 2023
1 parent 4a1e0a9 commit 8a5cb09
Show file tree
Hide file tree
Showing 255 changed files with 41,922 additions and 41,598 deletions.
27 changes: 16 additions & 11 deletions 404.html

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions SUMMARY.md.in
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
- [File System Object](architecture/file-system-object.md)
- [Protocols](protocols/protocols.md)
- [Serving Tarball Flakes](protocols/tarball-fetcher.md)
- [Derivation "ATerm" file format](protocols/derivation-aterm.md)
- [Glossary](glossary.md)
- [Contributing](contributing/contributing.md)
- [Hacking](contributing/hacking.md)
Expand All @@ -108,6 +109,7 @@
- [CLI guideline](contributing/cli-guideline.md)
- [C++ style guide](contributing/cxx.md)
- [Release Notes](release-notes/release-notes.md)
- [Release 2.18 (2023-09-20)](release-notes/rl-2.18.md)
- [Release 2.17 (2023-07-24)](release-notes/rl-2.17.md)
- [Release 2.16 (2023-05-31)](release-notes/rl-2.16.md)
- [Release 2.15 (2023-04-11)](release-notes/rl-2.15.md)
Expand Down
34 changes: 20 additions & 14 deletions advanced-topics/advanced-topics.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions advanced-topics/cores-vs-jobs.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions advanced-topics/diff-hook.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions advanced-topics/distributed-builds.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions advanced-topics/post-build-hook.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions architecture/architecture.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions architecture/file-system-object.html

Large diffs are not rendered by default.

47 changes: 31 additions & 16 deletions book.js
Original file line number Diff line number Diff line change
Expand Up @@ -441,16 +441,16 @@ function playground_text(playground, hidden = true) {
})();

(function sidebar() {
var html = document.querySelector("html");
var body = document.querySelector("body");
var sidebar = document.getElementById("sidebar");
var sidebarLinks = document.querySelectorAll('#sidebar a');
var sidebarToggleButton = document.getElementById("sidebar-toggle");
var sidebarResizeHandle = document.getElementById("sidebar-resize-handle");
var firstContact = null;

function showSidebar() {
html.classList.remove('sidebar-hidden')
html.classList.add('sidebar-visible');
body.classList.remove('sidebar-hidden')
body.classList.add('sidebar-visible');
Array.from(sidebarLinks).forEach(function (link) {
link.setAttribute('tabIndex', 0);
});
Expand All @@ -471,8 +471,8 @@ function playground_text(playground, hidden = true) {
});

function hideSidebar() {
html.classList.remove('sidebar-visible')
html.classList.add('sidebar-hidden');
body.classList.remove('sidebar-visible')
body.classList.add('sidebar-hidden');
Array.from(sidebarLinks).forEach(function (link) {
link.setAttribute('tabIndex', -1);
});
Expand All @@ -483,14 +483,14 @@ function playground_text(playground, hidden = true) {

// Toggle sidebar
sidebarToggleButton.addEventListener('click', function sidebarToggle() {
if (html.classList.contains("sidebar-hidden")) {
if (body.classList.contains("sidebar-hidden")) {
var current_width = parseInt(
document.documentElement.style.getPropertyValue('--sidebar-width'), 10);
if (current_width < 150) {
document.documentElement.style.setProperty('--sidebar-width', '150px');
}
showSidebar();
} else if (html.classList.contains("sidebar-visible")) {
} else if (body.classList.contains("sidebar-visible")) {
hideSidebar();
} else {
if (getComputedStyle(sidebar)['transform'] === 'none') {
Expand All @@ -506,14 +506,14 @@ function playground_text(playground, hidden = true) {
function initResize(e) {
window.addEventListener('mousemove', resize, false);
window.addEventListener('mouseup', stopResize, false);
html.classList.add('sidebar-resizing');
body.classList.add('sidebar-resizing');
}
function resize(e) {
var pos = (e.clientX - sidebar.offsetLeft);
if (pos < 20) {
hideSidebar();
} else {
if (html.classList.contains("sidebar-hidden")) {
if (body.classList.contains("sidebar-hidden")) {
showSidebar();
}
pos = Math.min(pos, window.innerWidth - 100);
Expand All @@ -522,7 +522,7 @@ function playground_text(playground, hidden = true) {
}
//on mouseup remove windows functions mousemove & mouseup
function stopResize(e) {
html.classList.remove('sidebar-resizing');
body.classList.remove('sidebar-resizing');
window.removeEventListener('mousemove', resize, false);
window.removeEventListener('mouseup', stopResize, false);
}
Expand Down Expand Up @@ -557,20 +557,35 @@ function playground_text(playground, hidden = true) {
document.addEventListener('keydown', function (e) {
if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) { return; }
if (window.search && window.search.hasFocus()) { return; }
var html = document.querySelector('html');

function next() {
var nextButton = document.querySelector('.nav-chapters.next');
if (nextButton) {
window.location.href = nextButton.href;
}
}
function prev() {
var previousButton = document.querySelector('.nav-chapters.previous');
if (previousButton) {
window.location.href = previousButton.href;
}
}
switch (e.key) {
case 'ArrowRight':
e.preventDefault();
var nextButton = document.querySelector('.nav-chapters.next');
if (nextButton) {
window.location.href = nextButton.href;
if (html.dir == 'rtl') {
prev();
} else {
next();
}
break;
case 'ArrowLeft':
e.preventDefault();
var previousButton = document.querySelector('.nav-chapters.previous');
if (previousButton) {
window.location.href = previousButton.href;
if (html.dir == 'rtl') {
next();
} else {
prev();
}
break;
}
Expand Down
31 changes: 18 additions & 13 deletions command-ref/command-ref.html

Large diffs are not rendered by default.

36 changes: 20 additions & 16 deletions command-ref/conf-file.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/env-common.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/experimental-commands.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/files.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/files/channels.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/files/default-nix-expression.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/files/manifest.json.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/files/manifest.nix.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/files/profiles.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/main-commands.html

Large diffs are not rendered by default.

382 changes: 195 additions & 187 deletions command-ref/new-cli/nix.html

Large diffs are not rendered by default.

433 changes: 219 additions & 214 deletions command-ref/new-cli/nix3-build.html

Large diffs are not rendered by default.

421 changes: 213 additions & 208 deletions command-ref/new-cli/nix3-bundle.html

Large diffs are not rendered by default.

433 changes: 219 additions & 214 deletions command-ref/new-cli/nix3-copy.html

Large diffs are not rendered by default.

777 changes: 761 additions & 16 deletions command-ref/new-cli/nix3-daemon.html

Large diffs are not rendered by default.

379 changes: 192 additions & 187 deletions command-ref/new-cli/nix3-derivation-add.html

Large diffs are not rendered by default.

421 changes: 213 additions & 208 deletions command-ref/new-cli/nix3-derivation-show.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-derivation.html

Large diffs are not rendered by default.

445 changes: 225 additions & 220 deletions command-ref/new-cli/nix3-develop.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-doctor.html

Large diffs are not rendered by default.

417 changes: 211 additions & 206 deletions command-ref/new-cli/nix3-edit.html

Large diffs are not rendered by default.

427 changes: 216 additions & 211 deletions command-ref/new-cli/nix3-eval.html

Large diffs are not rendered by default.

419 changes: 212 additions & 207 deletions command-ref/new-cli/nix3-flake-archive.html

Large diffs are not rendered by default.

417 changes: 211 additions & 206 deletions command-ref/new-cli/nix3-flake-check.html

Large diffs are not rendered by default.

415 changes: 210 additions & 205 deletions command-ref/new-cli/nix3-flake-clone.html

Large diffs are not rendered by default.

415 changes: 210 additions & 205 deletions command-ref/new-cli/nix3-flake-info.html

Large diffs are not rendered by default.

395 changes: 200 additions & 195 deletions command-ref/new-cli/nix3-flake-init.html

Large diffs are not rendered by default.

411 changes: 208 additions & 203 deletions command-ref/new-cli/nix3-flake-lock.html

Large diffs are not rendered by default.

415 changes: 210 additions & 205 deletions command-ref/new-cli/nix3-flake-metadata.html

Large diffs are not rendered by default.

395 changes: 200 additions & 195 deletions command-ref/new-cli/nix3-flake-new.html

Large diffs are not rendered by default.

415 changes: 210 additions & 205 deletions command-ref/new-cli/nix3-flake-prefetch.html

Large diffs are not rendered by default.

419 changes: 212 additions & 207 deletions command-ref/new-cli/nix3-flake-show.html

Large diffs are not rendered by default.

405 changes: 205 additions & 200 deletions command-ref/new-cli/nix3-flake-update.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-flake.html

Large diffs are not rendered by default.

417 changes: 211 additions & 206 deletions command-ref/new-cli/nix3-fmt.html

Large diffs are not rendered by default.

387 changes: 196 additions & 191 deletions command-ref/new-cli/nix3-hash-file.html

Large diffs are not rendered by default.

387 changes: 196 additions & 191 deletions command-ref/new-cli/nix3-hash-path.html

Large diffs are not rendered by default.

379 changes: 192 additions & 187 deletions command-ref/new-cli/nix3-hash-to-base16.html

Large diffs are not rendered by default.

379 changes: 192 additions & 187 deletions command-ref/new-cli/nix3-hash-to-base32.html

Large diffs are not rendered by default.

379 changes: 192 additions & 187 deletions command-ref/new-cli/nix3-hash-to-base64.html

Large diffs are not rendered by default.

379 changes: 192 additions & 187 deletions command-ref/new-cli/nix3-hash-to-sri.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-hash.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-help-stores.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-help.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-key-convert-secret-to-public.html

Large diffs are not rendered by default.

379 changes: 192 additions & 187 deletions command-ref/new-cli/nix3-key-generate-secret.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-key.html

Large diffs are not rendered by default.

417 changes: 211 additions & 206 deletions command-ref/new-cli/nix3-log.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-nar-cat.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-nar-dump-path.html

Large diffs are not rendered by default.

385 changes: 195 additions & 190 deletions command-ref/new-cli/nix3-nar-ls.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-nar.html

Large diffs are not rendered by default.

435 changes: 220 additions & 215 deletions command-ref/new-cli/nix3-path-info.html

Large diffs are not rendered by default.

423 changes: 214 additions & 209 deletions command-ref/new-cli/nix3-print-dev-env.html

Large diffs are not rendered by default.

379 changes: 192 additions & 187 deletions command-ref/new-cli/nix3-profile-diff-closures.html

Large diffs are not rendered by default.

395 changes: 200 additions & 195 deletions command-ref/new-cli/nix3-profile-history.html

Large diffs are not rendered by default.

423 changes: 214 additions & 209 deletions command-ref/new-cli/nix3-profile-install.html

Large diffs are not rendered by default.

397 changes: 201 additions & 196 deletions command-ref/new-cli/nix3-profile-list.html

Large diffs are not rendered by default.

395 changes: 200 additions & 195 deletions command-ref/new-cli/nix3-profile-remove.html

Large diffs are not rendered by default.

383 changes: 194 additions & 189 deletions command-ref/new-cli/nix3-profile-rollback.html

Large diffs are not rendered by default.

419 changes: 212 additions & 207 deletions command-ref/new-cli/nix3-profile-upgrade.html

Large diffs are not rendered by default.

383 changes: 194 additions & 189 deletions command-ref/new-cli/nix3-profile-wipe-history.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-profile.html

Large diffs are not rendered by default.

427 changes: 216 additions & 211 deletions command-ref/new-cli/nix3-realisation-info.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-realisation.html

Large diffs are not rendered by default.

393 changes: 199 additions & 194 deletions command-ref/new-cli/nix3-registry-add.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-registry-list.html

Large diffs are not rendered by default.

395 changes: 200 additions & 195 deletions command-ref/new-cli/nix3-registry-pin.html

Large diffs are not rendered by default.

379 changes: 192 additions & 187 deletions command-ref/new-cli/nix3-registry-remove.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-registry.html

Large diffs are not rendered by default.

419 changes: 212 additions & 207 deletions command-ref/new-cli/nix3-repl.html

Large diffs are not rendered by default.

417 changes: 211 additions & 206 deletions command-ref/new-cli/nix3-run.html

Large diffs are not rendered by default.

421 changes: 213 additions & 208 deletions command-ref/new-cli/nix3-search.html

Large diffs are not rendered by default.

429 changes: 217 additions & 212 deletions command-ref/new-cli/nix3-shell.html

Large diffs are not rendered by default.

379 changes: 192 additions & 187 deletions command-ref/new-cli/nix3-show-config.html

Large diffs are not rendered by default.

381 changes: 193 additions & 188 deletions command-ref/new-cli/nix3-store-add-file.html

Large diffs are not rendered by default.

381 changes: 193 additions & 188 deletions command-ref/new-cli/nix3-store-add-path.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-store-cat.html

Large diffs are not rendered by default.

423 changes: 214 additions & 209 deletions command-ref/new-cli/nix3-store-copy-log.html

Large diffs are not rendered by default.

427 changes: 216 additions & 211 deletions command-ref/new-cli/nix3-store-copy-sigs.html

Large diffs are not rendered by default.

427 changes: 216 additions & 211 deletions command-ref/new-cli/nix3-store-delete.html

Large diffs are not rendered by default.

419 changes: 212 additions & 207 deletions command-ref/new-cli/nix3-store-diff-closures.html

Large diffs are not rendered by default.

425 changes: 215 additions & 210 deletions command-ref/new-cli/nix3-store-dump-path.html

Large diffs are not rendered by default.

381 changes: 193 additions & 188 deletions command-ref/new-cli/nix3-store-gc.html

Large diffs are not rendered by default.

385 changes: 195 additions & 190 deletions command-ref/new-cli/nix3-store-ls.html

Large diffs are not rendered by default.

431 changes: 218 additions & 213 deletions command-ref/new-cli/nix3-store-make-content-addressed.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-store-optimise.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-store-path-from-hash-part.html

Large diffs are not rendered by default.

379 changes: 192 additions & 187 deletions command-ref/new-cli/nix3-store-ping.html

Large diffs are not rendered by default.

387 changes: 196 additions & 191 deletions command-ref/new-cli/nix3-store-prefetch-file.html

Large diffs are not rendered by default.

425 changes: 215 additions & 210 deletions command-ref/new-cli/nix3-store-repair.html

Large diffs are not rendered by default.

427 changes: 216 additions & 211 deletions command-ref/new-cli/nix3-store-sign.html

Large diffs are not rendered by default.

433 changes: 219 additions & 214 deletions command-ref/new-cli/nix3-store-verify.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/new-cli/nix3-store.html

Large diffs are not rendered by default.

383 changes: 194 additions & 189 deletions command-ref/new-cli/nix3-upgrade-nix.html

Large diffs are not rendered by default.

423 changes: 214 additions & 209 deletions command-ref/new-cli/nix3-why-depends.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-build.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-channel.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-collect-garbage.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-copy-closure.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/nix-daemon.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/nix-env.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-env/delete-generations.html

Large diffs are not rendered by default.

344 changes: 153 additions & 191 deletions command-ref/nix-env/install.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-env/list-generations.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-env/query.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-env/rollback.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-env/set-flag.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-env/set.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-env/switch-generation.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-env/switch-profile.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-env/uninstall.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-env/upgrade.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/nix-hash.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-instantiate.html

Large diffs are not rendered by default.

44 changes: 26 additions & 18 deletions command-ref/nix-prefetch-url.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-shell.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/nix-store.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/add-fixed.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/add.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/delete.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/dump-db.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/dump.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/export.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/gc.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/generate-binary-cache-key.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/import.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/load-db.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/optimise.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/print-env.html

Large diffs are not rendered by default.

359 changes: 165 additions & 194 deletions command-ref/nix-store/query.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/read-log.html

Large diffs are not rendered by default.

428 changes: 193 additions & 235 deletions command-ref/nix-store/realise.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/nix-store/repair-path.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/restore.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/serve.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/verify-path.html

Large diffs are not rendered by default.

342 changes: 152 additions & 190 deletions command-ref/nix-store/verify.html

Large diffs are not rendered by default.

298 changes: 130 additions & 168 deletions command-ref/opt-common.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions command-ref/utilities.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions contributing/cli-guideline.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions contributing/contributing.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions contributing/cxx.html

Large diffs are not rendered by default.

35 changes: 18 additions & 17 deletions contributing/experimental-features.html

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions contributing/hacking.html

Large diffs are not rendered by default.

34 changes: 20 additions & 14 deletions contributing/testing.html

Large diffs are not rendered by default.

Loading

0 comments on commit 8a5cb09

Please sign in to comment.