summary refs log tree commit diff
path: root/nixos/doc
Commit message (Collapse)AuthorAge
* 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
|
* nixos/release notes: explain removal of tidy-html5Vladimír Čunát2015-11-29
| | | | This belongs to 81b9cc6f54.
* release-notes: add longview as a new serviceRodney Lorrimar2015-11-26
|
* ruby: remove insecure 1.8.7, fixes #11194zimbatm2015-11-25
| | | | | | 1.8.x is unsupported and is probably insecure. This also simplifies things a little bit
* s3sync: delete dead projectzimbatm2015-11-25
| | | | | | | According to http://s3sync.net/wiki.html, https://github.com/ms4720/s3sync was supposed to take over the development but nothing has happened in 4 years. The project is unfortunately dead and is our only dependency to ruby 1.8.
* Add a way to pin a NixOS version within the module system.Nicolas B. Pierron2015-11-19
| | | | | This modification add a way to re-evaluate the module system with a different version of NixOS, or with a different set of arguments.
* nixos manual: point to NixOps' homepage, not GithubHajo Möller2015-11-14
|
* manual: document nginx changesNikolay Amiantov2015-11-02
|