summary refs log tree commit diff
path: root/nixos/doc/manual
Commit message (Collapse)AuthorAge
...
* | | Rename boot.loader.gummiboot.enable -> boot.loader.systemd-boot.enableEelco Dolstra2016-06-01
| |/ |/|
* | nixos-generate-config: Emit LUKS configuration for boot deviceEelco Dolstra2016-05-25
| |
* | boot.initrd.luks.devices: Change into an attribute setEelco Dolstra2016-05-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows setting options for the same LUKS device in different modules. For example, the auto-generated hardware-configuration.nix can contain boot.initrd.luks.devices.crypted.device = "/dev/disk/..."; while configuration.nix can add boot.initrd.luks.devices.crypted.allowDiscards = true; Also updated the examples/docs to use /disk/disk/by-uuid instead of /dev/sda, since we shouldn't promote the use of the latter.
* | release notes: mention removal of shell aliasesVladimír Čunát2016-05-23
| |
* | manual: minor cleanupsJoachim Fasting2016-05-22
|/
* releasenotes: fix opengl.extraPackages option nameAlexander Ried2016-05-21
| | | Should be merged into master and release-16.03 I guess
* typoDomen Kožar2016-05-20
|
* nixos: add a small section about kernel module devDomen Kožar2016-05-20
|
* Merge #15105: nixos manual: rephrase indented stringsVladimír Čunát2016-05-02
|\
| * Manual: rephrase definition for indented stringsiarizc Leuname2016-04-30
| | | | | | | | Closes #15076
* | Merge pull request #14700: olinks for NixOS manualaszlig2016-05-02
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows to use <olink> tags inside NixOS options to reference sections from the manual. I've originally introduced it in #14476 to reference the Taskserver specific documentation from the options reference but as suggested by @nbp, this was done as a separate pull request to ensure greater visibility rather than being "hidden" in the Taskserver branch. The build time for the manual is around 30s on my machine without this change and 34s with this change, so it shouldn't have a very big impact on the build time of the manual. Olinks between the options reference and the manual now will look like this: "More instructions about NixOS in conjuction with Taskserver can be found in the NixOS manual at Chapter 15, Taskserver." More documentation about olinks can be found here: http://www.sagehill.net/docbookxsl/Olinking.html Acked-by: Eelco Dolstra <eelco.dolstra@logicblox.com>
| * nixos/doc: Allow refs from options to the manualaszlig2016-04-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | My first attempt to do this was to just use a conditional <refsection/> in order to not create exact references in the manpage but create the reference in the HTML manual, as suggested by @edolstra on IRC. Later I went on to use <olink/> to reference sections of the manual, but in order to do that, we need to overhaul how we generate the manual and manpages. So, that's where we are now: There is a new derivation called "manual-olinkdb", which is the olinkdb for the HTML manual, which in turn creates the olinkdb.xml file and the manual.db. The former contains the targetdoc references and the latter the specific targetptr elements. The reason why I included the olinkdb.xml verbatim is that first of all the DTD is dependent on the Docbook XSL sources and the references within the olinkdb.xml entities are relative to the current directory. So using a store path for that would end up searching for the manual.db directly in /nix/store/manual.db. Unfortunately, the <olinks/> that end up in the output file are relative, so for example if you're clicking on one of these within the PDF, the URL is searched in the current directory. However, the sections from the olink's text are still valid, so we could use an alternative URL for that in the future. The manual doesn't contain any links, so even referencing the relative URL shouldn't do any harm. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Cc: @edolstra
* | Revert "Manual: rephrase definition for indented strings" (#15103)Domen Kožar2016-04-30
| |
* | Manual: rephrase definition for indented strings (#15086)NotaseCretagen2016-04-30
| | | | | | Closes #15076
* | PXE boot: add manual section and note in changelogDomen Kožar2016-04-29
| |
* | nixos-checkout: RemoveEelco Dolstra2016-04-20
| | | | | | | | | | | | This command was useful when NixOS was spread across multiple repositories, but now it's pretty pointless (and obfuscates what happens, i.e. "git clone git://github.com/NixOS/nixpkgs.git").
* | Merge pull request #14476 (taskserver)aszlig2016-04-15
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a Taskserver module along with documentation and a small helper tool which eases managing a custom CA along with Taskserver organisations, users and groups. Taskserver is the server component of Taskwarrior, a TODO list application for the command line. The work has been started by @matthiasbeyer back in mid 2015 and I have continued to work on it recently, so this merge contains commits from both of us. Thanks particularly to @nbp and @matthiasbeyer for reviewing and suggesting improvements. I've tested this with the new test (nixos/tests/taskserver.nix) this branch adds and it fails because of the changes introduced by the closure-size branch, so we need to do additional work on base of this.
| * nixos/doc: Revert allowing olinks from optionsaszlig2016-04-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 1d77dcaed37ab47bfe2d90711c01b475a514ff25. It will be reintroduced along with #14700 as a separate branch, as suggested by @nbp. I added this to this branch because I thought it was a necessary dependency, but it turns out that the build of the manual/manpages still succeeds and merely prints a warning like this: warning: failed to load external entity "olinkdb.xml" Olink error: could not open target database 'olinkdb.xml'. Error: unresolved olink: targetdoc/targetptr = 'manual/module-taskserver'. The olink itself will be replaced by "???", so users looking at the description of the option in question will still see the reference to the NixOS manual, like this: More instructions about NixOS in conjuction with Taskserver can be found in the NixOS manual at ???. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
| * nixos/doc: Allow refs from options to the manualaszlig2016-04-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | My first attempt to do this was to just use a conditional <refsection/> in order to not create exact references in the manpage but create the reference in the HTML manual, as suggested by @edolstra on IRC. Later I went on to use <olink/> to reference sections of the manual, but in order to do that, we need to overhaul how we generate the manual and manpages. So, that's where we are now: There is a new derivation called "manual-olinkdb", which is the olinkdb for the HTML manual, which in turn creates the olinkdb.xml file and the manual.db. The former contains the targetdoc references and the latter the specific targetptr elements. The reason why I included the olinkdb.xml verbatim is that first of all the DTD is dependent on the Docbook XSL sources and the references within the olinkdb.xml entities are relative to the current directory. So using a store path for that would end up searching for the manual.db directly in /nix/store/manual.db. Unfortunately, the <olinks/> that end up in the output file are relative, so for example if you're clicking on one of these within the PDF, the URL is searched in the current directory. However, the sections from the olink's text are still valid, so we could use an alternative URL for that in the future. The manual doesn't contain any links, so even referencing the relative URL shouldn't do any harm. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Cc: @edolstra
| * nixos/taskserver: Add module documentationaszlig2016-04-07
| | | | | | | | | | | | | | It's not by any means exhaustive, but we're still going to change the implementation, so let's just use this as a starting point. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | Merge branch 'staging', containing closure-size #7701Vladimír Čunát2016-04-13
|\ \
| * \ Merge branch 'master' into closure-sizeVladimír Čunát2016-04-10
| |\ \ | | | | | | | | | | | | | | | | | | | | Comparison to master evaluations on Hydra: - 1255515 for nixos - 1255502 for nixpkgs
| * \ \ Merge 'staging' into closure-sizeVladimír Čunát2016-04-07
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | This is mainly to get the update of bootstrap tools. Otherwise there were mysterious segfaults: https://github.com/NixOS/nixpkgs/pull/7701#issuecomment-203389817
| * \ \ \ Merge branch 'master' into closure-sizeVladimír Čunát2016-04-01
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Beware that stdenv doesn't build. It seems something more will be needed than just resolution of merge conflicts.
| * \ \ \ \ Merge master into closure-sizeVladimír Čunát2016-03-08
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | The kde-5 stuff still didn't merge well. I hand-fixed what I saw, but there may be more problems.
| * \ \ \ \ \ Merge branch 'master' into closure-sizeVladimír Čunát2016-02-14
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge recent 'staging' into closure-sizeVladimír Čunát2016-02-03
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Let's get rid of those merge conflicts.
| * \ \ \ \ \ \ \ Merge branch 'staging' into closure-sizeVladimír Čunát2016-01-19
| |\ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ Merge branch 'master' into closure-sizeVladimír Čunát2015-12-31
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TODO: there was more significant refactoring of qtbase and plasma 5.5 on master, and I'm deferring pointing to correct outputs to later.
| * \ \ \ \ \ \ \ \ \ Merge branch 'master' into closure-sizeLuca Bruno2015-12-11
| |\ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ Merge branch 'master' into closure-sizeLuca Bruno2015-11-29
| |\ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ Merge remote-tracking branch 'origin/master' into closure-sizeLuca Bruno2015-11-25
| |\ \ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ \ Merge staging into closure-sizeVladimír Čunát2015-11-20
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The most complex problems were from dealing with switches reverted in the meantime (gcc5, gmp6, ncurses6). It's likely that darwin is (still) broken nontrivially.
| * | | | | | | | | | | | | | libxml2,libxslt: split into multiple outputsVladimír Čunát2015-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed all references, hopefully. libxml2Python is slightly hacky now, but it seems to work.
* | | | | | | | | | | | | | | input-method module: fix folder caseEric Sagnes2016-04-12
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | manual: add chapter on input methodsEric Sagnes2016-04-12
| |_|_|_|_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | manual: delete dangling pointer to real-world NixOS configsJoachim Fasting2016-04-08
| |_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At some point we probably want to replace this with a curated list of configurations or even an upstreamed repository of examples, but for now this is just noise. Fixes NixOS/nixpkgs#14522
* | | | | | | | | | | | | Merge pull request #14426 from nbp/fix-rl1603-typojoachifm2016-04-04
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix typo in service.syncthing.dataDir description.
| * | | | | | | | | | | | | Fix typo in service.syncthing.dataDir description.Nicolas B. Pierron2016-04-03
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | nixos manual: recommend use of dd for writing the imageRastus Vernon2016-04-02
|/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unetbootin works by altering the image and placing a boot loader on it. For this reason, it cannot work with UEFI and the installation guides for other distributions (incl. Debian and Fedora) recommend against using it. Since dd writes the image verbatim to the drive, and not just the files, it is not necessary to change the label after using it for UEFI installations. vcunat: tiny changes to the PR. Close #14139.
* | | | | | | | | | | | | changelog: correct path to gitit nixos moduleDomen Kožar2016-03-31
| | | | | | | | | | | | |
* | | | | | | | | | | | | changelog: note binutils upgradeDomen Kožar2016-03-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit 216c840ca8c7a3a0e71244be3b739dafa32a0709) Signed-off-by: Domen Kožar <domen@dev.si>
* | | | | | | | | | | | | changelog: note release dateDomen Kožar2016-03-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit 279557e6d2a1afce8419030ec538c1eb3f42abe4) Signed-off-by: Domen Kožar <domen@dev.si>
* | | | | | | | | | | | | changelog: add all new NixOS modulesDomen Kožar2016-03-31
| |_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit d231868990f8b2d471648d76f07e747f396b9421) Signed-off-by: Domen Kožar <domen@dev.si>
* | | | | | | | | | | | NixOS manual: Add some release notesEelco Dolstra2016-03-31
| |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | |
* | | | | | | | | | | manual rl-16.03: document broadcom issue #12595Vladimír Čunát2016-03-29
| | | | | | | | | | |
* | | | | | | | | | | nixos/manpages: enable linebreaking after slashesPascal Wittmann2016-03-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow linbreaks after slashes in long URLs. The option used is documented at http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.break.after.slash.html This commit fixes #4538.
* | | | | | | | | | | Document the fact that the firewall allows pings by default in rl-1603.xml.Peter Simons2016-03-18
| | | | | | | | | | |
* | | | | | | | | | | nixos/doc: adding line about the change in service.syncthingRok Garbas2016-03-09
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | manual/installing: add loadkeys hintProfpatsch2016-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #13702 and fixes #3132. (Tiny changes by vcunat.)