about summary refs log tree commit diff
path: root/nixos/doc
Commit message (Collapse)AuthorAge
* 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.)
* Revert "Add the tool "nixos-typecheck" that can check an option declaration to:"Eelco Dolstra2016-03-01
| | | | | | This reverts commit cad8957eabcbf73062226d28366fd446c15c8737. It breaks NixOps, but more importantly, such major changes to the module system really need to be reviewed.
* Manual: rl-unstable.xml -> rl-1603.xmlEelco Dolstra2016-02-29
|
* Add the tool "nixos-typecheck" that can check an option declaration to:Thomas Strobel2016-02-29
| | | | | | | | | | | | | | - Enforce that an option declaration has a "defaultText" if and only if the type of the option derives from "package", "packageSet" or "nixpkgsConfig" and if a "default" attribute is defined. - Enforce that the value of the "example" attribute is wrapped with "literalExample" if the type of the option derives from "package", "packageSet" or "nixpkgsConfig". - Warn if a "defaultText" is defined in an option declaration if the type of the option does not derive from "package", "packageSet" or "nixpkgsConfig". - Warn if no "type" is defined in an option declaration.
* nsd service: add non-backward compatible release note entryNicolas B. Pierron2016-02-28
|
* Revert "Add a way to pin a NixOS version within the module system."Eelco Dolstra2016-02-27
| | | | | | This reverts commit a5992ad61b314104aff7e28a41ce101a1b0e7c35. Motivation: https://github.com/NixOS/nixpkgs/commit/a5992ad61b314104aff7e28a41ce101a1b0e7c35#commitcomment-14986820
* gitlab: Add documentationFranz Pletz2016-02-26
| | | | Fixes #13303.
* Merge pull request #13059 from abbradar/udev-local-priorityEelco Dolstra2016-02-23
|\ | | | | Make local udev rules higher prioritized
| * udev service: make local rules apply after all othersNikolay Amiantov2016-02-23
| |
* | added input method related changelogEric Sagnes2016-02-20
| |
* | Merge branch 'master' into stagingVladimír Čunát2016-02-17
|\ \
| * | pdnsd service: initJinjing Wang2016-02-12
| |/
* | Merge branch 'master' into stagingVladimír Čunát2016-02-07
|\|
| * filesystems: use list of strings for fs optionsAneesh Agrawal2016-02-06
| | | | | | | | | | | | | | | | | | | | | | | | Allow usage of list of strings instead of a comma-separated string for filesystem options. Deprecate the comma-separated string style with a warning message; convert this to a hard error after 16.09. 15.09 was just released, so this provides a deprecation period during the 16.03 release. closes #10518 Signed-off-by: Robin Gloster <mail@glob.in>
| * Merge pull request #12560 from tvestelind/hakaRobin Gloster2016-02-06
| |\ | | | | | | Haka: new package
| | * haka in unstable release notesTomas Vestelind2016-02-01
| | |
| * | nixos-manual: Further simplify stripAnyPrefixesaszlig2016-01-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | First of all this fixes an evaluation error I introduced in ae466ba, which wasn't triggered by any of my own tests against the change because there are usually no NixOS options that are declared outside of the <nixpkgs> tree. I renamed the attribute name from "fn" to "fileName" first and later to "fullPath" but forgot one still occuring "filename". Thanks to @vcunat for noticing this. Another thing that he pointed out was that the "stripPrefix" function can be factored away entirely, because it's very similar to "removePrefix" in <nixpkgs/lib>. Unfortunately we can't use "removePrefix" as is, because we need to account for the final shlash. So instead of removing it twice and/or retaining "stripPrefix", let's append a shlash on every "prefixesToStrip" and we can use "removePrefix" as is. Tested with: taalo-build nixos/release.nix -A tests.installer.simple.x86_64-linux And: w3m -dump "$( nix-build nixos/release.nix -A manual.x86_64-linux )/share/doc/nixos/options.html" Signed-off-by: aszlig <aszlig@redmoonstudios.org> Cc: @vcunat
| * | nixos-manual: Simplify stripping prefixesaszlig2016-01-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Let's use a simple (unflipped) fold and break out the actual core stripPrefix function from stripAnyPrefixes (I personally love point-less^H^H^H^Hfree style but if I'd be anal I'd even go further and factor away the "fn:"). Also, let's use path as a better name for "fn" (filename), because that's what it is and also cannot be confused with "fn" meaning "function". We now toString all of the prefixes, so there shouldn't be any need to implicily toString the extraSources anymore. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
| * | nixos-manual: Fix stripping declaration prefixesaszlig2016-01-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Regression introduced by e6cd147ae7ae05900ec2ab8ad933bfac7428feac. This broke all of the installer tests, because they needed to rebuild the manual within the test machine, while it only has a closure of the already pre-built system in place. The problem here was just that the order of the arguments got mixed up in stripAnyPrefixes, so it was actually trying to strip the path off the prefix, not the other way around. So in the end no prefix was stripped at all, so we ended up having full store paths in the manual, which in turn caused the build within the VM to fail, because the prefixes differed. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | Merge branch 'master' into stagingVladimír Čunát2016-01-29
|\| |
| * | Merge pull request #12557 from ryanartecona/nixos-manual-custom-optionsEelco Dolstra2016-01-25
| |\ \ | | | | | | | | NixOS manual: allow options from nix packages
| | * | nixos manual: allow options from nix packagesRyan Artecona2016-01-22
| | |/
* | | nixos xserver: remove vaapiDriversNikolay Amiantov2016-01-26
| | | | | | | | | | | | Use hardware.opengl.extraPackages instead.
* | | Merge branch 'master' into stagingVladimír Čunát2016-01-25
|\| |
| * | nixos: update-locatedb - harden via systemd (#7220)Dan Peebles2016-01-23
| |/ | | | | | | | | | | Also, use systemd timers. Most of the work is by @thoughtpolice but I changed enough of it to warrant changing commit author.
| * nixos changelog: mention postfix changesNikolay Amiantov2016-01-21
| |
| * nixos changelog: mention ejabberd fixesNikolay Amiantov2016-01-21
| |
| * nixos/doc: fix to: ~/.nix-defexpr wasn't created, fixes #6606Joachim Schiele2016-01-20
| |
* | nixos changelog: mention CUPS changesNikolay Amiantov2016-01-21
|/
* Merge #12299: make firefox-like browsers wrapped by defaultVladimír Čunát2016-01-15
|\
| * release notes: document renames of firefox-like browsersVladimír Čunát2016-01-15
| |
* | nixos: Document "jobs" option removalDomen Kožar2016-01-14
|/
* release-notes: document $NIX_AUTO_RUN from #12000Vladimír Čunát2016-01-10
|
* wpa_supplicant service: Warn about plaintext keys in docsRobin Gloster2016-01-06
|
* wpa_supplicant module: add networks optionRobin Gloster2016-01-06
|
* Revert "Basic Declaritive Network Configuration in wpa_supplicant Service"Peter Simons2016-01-05
|
* Merge pull request #12015 from mayflower/wpa_supplicant-servicePeter Simons2016-01-05
|\ | | | | Basic Declaritive Network Configuration in wpa_supplicant Service
| * wpa_supplicant module: add networks optionRobin Gloster2015-12-29
| |
* | nixos-rebuild: Document --build-host and --target-host optionsRickard Nilsson2016-01-01
|/
* release-notes: add pump.io as a new serviceRodney Lorrimar2015-12-27
|
* nixos/manual: typoDrew Carey Buglione2015-12-26
|
* release-notes: note addition of ELPA and MELPA packagesThomas Tuegel2015-12-19
|
* nixos release notes: mention enableCtrlAltBackspaceVladimír Čunát2015-12-17
| | | | /cc #11228.
* Merge pull request #11575 from rvlander/fix_container_manualAristid Breitkreuz2015-12-13
|\ | | | | nixos-manual: fix incomplete container doc
| * nixos-manual: fix grammarGaëtan André2015-12-10
| |
| * nixos-manual: develop autoStart option for containersGaëtan André2015-12-09
| |
| * nixos-manual: fix incomplete container docGaëtan André2015-12-09
| |
* | nixos/acme: Add module documentationFranz Pletz2015-12-12
|/
* release-notes: mention bumblebee changesNikolay Amiantov2015-12-08
|