summary refs log tree commit diff
path: root/nixos/doc
Commit message (Collapse)AuthorAge
* nixos tests doc: update VM state pathErik Arvstedt2018-09-17
|
* nixos tests doc: add example statementErik Arvstedt2018-09-17
|
* nixos tests doc: fix example statementErik Arvstedt2018-09-17
| | | | | False statements don't cause NixOS tests to fail, we need to throw an exception or terminate.
* kubernetes: 1.10.5 -> 1.11.3Johan Thomsen2018-09-12
| | | | | | | | | Fixed minor issue where kube-addon manager complaints about /opt/namespace.yaml missing. Added release notes with reference to Kubernetes 1.11 release notes. closes #43882
* nixos/doc: Add stable pre-release warning (#46473)Sarah Brofeldt2018-09-11
|
* doc: Add release notes for top-level {build,host,target}Platform deprecationJohn Ericson2018-09-06
| | | | I forgot to do this in e51f736076548459f36a1250de4bf6867f880b66.
* Merge pull request #46148 from obsidiansystems/plain-system-hostJohn Ericson2018-09-06
|\ | | | | top-level, stdenv: Make `system` and `stdenv.system` describe the hostPlatform
| * doc: Add changelog entry for new definition of `system` and `stdenv.system`John Ericson2018-09-06
| | | | | | | | See the previous commit for details.
* | nixos: Document option description changesaszlig2018-09-03
| | | | | | | | | | | | | | | | | | | | | | This adds a release notes entry to make users (and especially developers) aware so they no longer need to use </para><para> in option descriptions as this is now done automatically on every two consecutive newlines. More details can be found in the commit message of f865d0feabfafbb30a9e. Signed-off-by: aszlig <aszlig@nix.build>
* | release-notes: Adds 19.03 — KoiSamuel Dionne-Riel2018-09-02
| |
* | Merge pull request #45930 from aszlig/option-description-parbreakGraham Christensen2018-09-02
|\ \ | |/ |/| nixos: Split paras by \n\n in option descriptions
| * nixos: Split paras by \n\n in option descriptionsaszlig2018-09-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | What annoyed me for a long time was the fact, that in order to break into a new paragraph, you need to insert </para><para> in the description attribute of an option. Now we will automatically create <para/> elements for every block that is separated by two consecutive newlines. I first tried to do this within options-to-docbook.xsl, but it turns out[1] that this isn't directly possible with XSLT 1.0, so I added another XSLT file that postprocesses the option descriptions that are now enclosed in <nixos:option-description/> by options-to-docbook.xsl. The splitting itself is a bit more involved, because we can't simply split on every \n\n because we'd also split text nodes of elements, for example: <screen><![CDATA[ one line another one ]]></screen> This would create one <para/> element for "one line" and another for "another line", which we obviously don't want because <screen/> is used to display verbatim contents of what a user is seeing on the screen. So what we do instead is splitting *only* the top-level text nodes within the outermost <para/> and leave all elements as-is. If there are more than one <para/> elements at the top-level, we simply don't process it at all, because the description then already contains </para><para>. https://www.mhonarc.org/archive/html/xsl-list/2012-09/msg00319.html Signed-off-by: aszlig <aszlig@nix.build> Cc: @edolstra, @domenkozar
* | nixos docs: more IDsGraham Christensen2018-09-02
|/
* nixos docs: footnotes: give IDsGraham Christensen2018-09-01
|
* makefile: auto-format xml docs outside of the doc subdirGraham Christensen2018-09-01
|
* nixos docs: give IDs to thingsGraham Christensen2018-09-01
|
* nixos docs: Give sections IDsGraham Christensen2018-09-01
|
* nixos/doc: add instructions for installation behind a proxy (#45854)Venkateswara Rao Mandela2018-09-01
| | | | | | | | | | | | | | | | The instructions to install nixos behind a proxy were not clear. While one could guess that setting http_proxy variables can get the install rolling, one could end up with an installed system where the proxy settings for the nix-daemon are not configured. This commit updates the documentation with 1. steps to install behind a proxy 2. configure the global proxy settings so that nix-daemon can access internet. 3. Pointers to use nesting.clone in case one has to use different proxy settings on different networks.
* Merge pull request #30890 from Lassulus/slim-lightdmxeji2018-09-01
|\ | | | | display-managers: make lightdm the default
| * xserver.displayManager: change defaultlassulus2018-08-31
| | | | | | | | | | | | | | | | Switch from slim to lightdm as the display-manager. If plasma5 is used as desktop-manager use sdddm. If gnome3 is used as desktop-manager use gdm. Based on #12516
* | Document running nixos-rebuild switch to clear /boot spaceGraham Christensen2018-08-31
|/
* nixos docs: add release notes for nix 2.0 requiremnt bumpGraham Christensen2018-08-30
|
* Merge pull request #44990 from Ma27/reload-user-units-during-activationJörg Thalheim2018-08-27
|\ | | | | nixos/switch-to-configuration: reload user units
| * nixos/switch-to-configuration: reload user unitsMaximilian Bosch2018-08-14
| | | | | | | | | | | | | | | | | | | | | | When rebuilding you have to manually run `systemctl --user daemon-reload`. It gathers all authenticated users using `loginctl list-user` and runs `daemon-reload` for each of them. This is a first step towards a `nixos-rebuild` which is able to reload user units from systemd. The entire task is fairly hard, however I consider this patch usable as it allows to restart units without running `daemon-reload` for each authenticated user.
* | elasticsearch-curator: add note to the NixOS release notesBas van Dijk2018-08-25
| |
* | Merge branch 'master' into es6Bas van Dijk2018-08-23
|\ \
| * | treewide: remove mailing list referencesRyan Mulligan2018-08-23
| | |
| * | Merge pull request #45215 from srhb/no-password-installSamuel Dionne-Riel2018-08-21
| |\ \ | | | | | | | | nixos/doc: New installer note on unattended installs
| | * | nixos/doc: New installer note on unattended installsSarah Brofeldt2018-08-19
| | |/
| * / lib/recursiveUpdateUntil: add a test & release note for fixProfpatsch2018-08-15
| |/
| * doc: document luksroot.nix changes in release notesJan Malakhovski2018-08-08
| |
| * cassandra: rewrote service from scratchThomas Bach2018-08-07
| | | | | | | | | | Adds a replacement for the previously broken `services.database.cassandra` with tests for a multi-node setup.
| * nixos/manual: add release note entry for FoundationDBAustin Seipp2018-08-05
| | | | | | | | Signed-off-by: Austin Seipp <aseipp@pobox.com>
| * Revert "nixos/manual: add release note entry for FoundationDB"Austin Seipp2018-08-05
| | | | | | | | This reverts commit be1124a5377e0fa328d2b1a20ecf5f935037d8f6.
| * nixos/manual: add release note entry for FoundationDBAustin Seipp2018-08-05
| | | | | | | | Signed-off-by: Austin Seipp <aseipp@pobox.com>
| * nixos/doc: added MATE to list of desktop managers in manual (#44442)smithtim2018-08-04
| |
| * nixos/doc: add the new strongswan-swanctl service to the 18.09 release notesBas van Dijk2018-08-03
| |
| * doc: change git:// links to https:// (#44395)Matthew Harm Bekkema2018-08-03
| | | | | | | | | | | | | | | | The server is not verified over the git:// transfer protocol. If you clone a repository over git://, you should check if the latest commit's hash is correct. On the other hand, https:// will always verify the server automatically, using certificate authorities.
* | nixos/doc: mention the ELK changes in the 18.09 release notesBas van Dijk2018-08-03
|/
* nixos/manual: added missing xml tagsAndreas Rammhold2018-08-01
|
* nixos/nix-daemon: default `nix.useSandbox` to `true`.Andreas Rammhold2018-07-29
|
* Revert "nixos: rename system.{stateVersion,defaultChannel} -> system.nixos.\1"Tuomas Tynkkynen2018-07-28
| | | | | | | | | | | This reverts commit 095fe5b43def40279a243e663c662b02caac5318. Pointless renames considered harmful. All they do is force people to spend extra work updating their configs for no benefit, and hindering the ability to switch between unstable and stable versions of NixOS. Like, what was the value of having the "nixos." there? I mean, by definition anything in a NixOS module has something to do with NixOS...
* skarnet software: rename attributes and split outputsProfpatsch2018-07-25
| | | | | | Change the attribute names of camelCased utils to kebab-case to improve consistency. Split every package into multiple outputs where possible.
* treewide: remove aliases in nixpkgsMatthew Bauer2018-07-18
| | | | | | | | | | | | | | | | | | This makes the command ‘nix-env -qa -f. --arg config '{skipAliases = true;}'’ work in Nixpkgs. Misc... - qtikz: use libsForQt5.callPackage This ensures we get the right poppler. - rewrites: docbook5_xsl -> docbook_xsl_ns docbook_xml_xslt -> docbook_xsl diffpdf: fixup
* firejail: add nixos modulePeter Hoeg2018-07-14
| | | | Also add support for wrapping binaries with firejail.
* dockerTools.buildImage: add option to use nix output hash as tagMathias Schreck2018-07-06
|
* Merge pull request #42709 from jollheef/masteradisbladis2018-06-30
|\ | | | | hostapd: use WPA2 instead of WPA1 by default
| * hostapd: use WPA2 instead of WPA1 by defaultMikhail Klementev2018-06-30
| |
* | manual: rename user added to networkmanager from "youruser" to "alice"Florian Klink2018-06-28
| | | | | | | | | | | | to be consistent with the rest of the manual Reported-By: Cedric Shahabi <cedric.shahabi@gmail.com>
* | manual: rename users.extraUsers to users.usersFlorian Klink2018-06-28
|/ | | | | | | Is called like this since 14321ae2431e33f5ed81f1ee43eddd29c7e9d01d, but docs were still using the old option in some cases. Reported-By: Cedric Shahabi <cedric.shahabi@gmail.com>