about summary refs log tree commit diff
path: root/nixos/doc
Commit message (Collapse)AuthorAge
* Merge pull request #34705 from etu/php-upgradeFranz Pletz2018-02-13
|\ | | | | php: 7.1.14 -> 7.2.2
| * php: 7.1.14 -> 7.2.2Elis Hirwing2018-02-07
| |
* | Merge #34866: nixos doc: efficient comparisonsVladimír Čunát2018-02-12
|\ \ | | | | | | | | | This solves most of the performance regression from a7d75ab (#33898).
| * | nixos: doc: trivial cleanup and docstring fixJan Malakhovski2018-02-11
| | |
| * | nixos: doc: make option sorting somewhat more efficientJan Malakhovski2018-02-11
| | |
* | | jid: remove packageProfpatsch2018-02-12
|/ /
* | nixos, lib: implement relatedPackages optionJan Malakhovski2018-02-09
| | | | | | | | | | | | | | | | This allows one to specify "related packages" in NixOS that get rendered into the configuration.nix(5) man page. The interface philosophy is pretty much stolen from TeX bibliography. See the next several commits for examples.
* | nixos/doc: push all the `enable*' and `package*` options to the top of their ↵Jan Malakhovski2018-02-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | option group Why? Because this way configuration.nix(5) can be read linearly. Before: > virtualisation.xen.bootParams > ... > virtualisation.xen.enable > ... > virtualisation.xen.package > ... After: > virtualisation.xen.enable > virtualisation.xen.package > virtualisation.xen.bootParams > ...
* | docs: Explain how to login into built vmMarkus Hauck2018-02-07
|/
* matrix-synapse: default to postgresql on 18.03David McFarland2018-02-04
|
* Merge pull request #33897 from rnhmjoj/digitsJörg Thalheim2018-02-02
|\ | | | | Avoid package attributes starting with a digit
| * docs: document changes regarding package attribute with a digitrnhmjoj2018-01-16
| |
* | Add setFunctionArgs lib function.Shea Levy2018-01-31
| | | | | | | | | | | | Among other things, this will allow *2nix tools to output plain data while still being composable with the traditional callPackage/.override interfaces.
* | Merge pull request #34060 from WilliButz/fix-postfix-moduleFranz Pletz2018-01-26
|\ \ | | | | | | nixos/postfix: fix default postfix config
| * | release notes: mention the postfix config option fixFranz Pletz2018-01-26
| | | | | | | | | | | | cc #34060
* | | addPassthru: fix argument orderOrivej Desh2018-01-24
|/ / | | | | | | | | | | addPassthru became unused in #33057, but its signature was changed at the same time. This commit restores the original signature and updates the warning and the changelog.
* | nixos manual: fix typoRommel Martinez2018-01-22
| |
* | doc: add wpa_supplicant command to connect to wifiMatthieu Coudron2018-01-22
| | | | | | | | | | | | New thin laptops don't have an ethernet port and so rely on wifi to get access. With the minimal installer, setup wpa_supplicant can be hard if it is the first time so here we provide an example.
* | amd-hybrid-graphics module: removeLinus Heckemann2018-01-15
|/ | | | | | This was only applicable to very specific hardware, and the only person with an apparent interest in maintaining it (me) no longer uses the hardware in question.
* Merge #33057: stdenv meta checks: make them lazyVladimír Čunát2018-01-14
|\ | | | | | | | | Closes #22277 - it's superseded; I have some WIP on evaluation performance, but best do that in a separate PR/thread.
| * release notes: mention removal of lib.addPassthruVladimír Čunát2018-01-14
| |
* | Revert "nixos/dnscrypt-proxy: remove"rnhmjoj2018-01-08
| | | | | | | | | | This reverts commit 5dc2853981b6e9287668dd17477375adfeb60ebf. The project has a new maintainer.
* | nixos/dnscrypt-proxy: removeJoachim Fasting2018-01-07
| | | | | | | | | | | | The upstream project ceased. See https://github.com/NixOS/nixpkgs/issues/33540
* | Merge pull request #33531 from vdm/patch-1Peter Hoeg2018-01-07
|\ \ | | | | | | Update macos USB instructions
| * | Update macos USB instructionsVincent Murphy2018-01-06
| | | | | | | | | "Ejecting" from the Finder ejects the entire device which is then not available for dd. diskutil unmountDisk does the right thing. Furthermore writing to diskN instead of rdiskN failed to complete even after waiting >10 minutes.
* | | test-driver: mention `$user` argument in the NixOS manual and the Impala ↵Maximilian Bosch2018-01-06
|/ / | | | | | | release notes
* | Merge pull request #33406 from samueldr/doc/usb-deviceOrivej Desh2018-01-06
|\ \ | | | | | | Documentation: reword "Obtaining NixOS" paragraph to remove contradiction + update link
| * | doc: Obtaining NixOS: New link to section in wiki.Samuel Dionne-Riel2018-01-03
| | | | | | | | | | | | | | | This adds a link to the new section in the new wiki that refers to the same contents as the previously removed link.
| * | doc: Obtaining NixOS now refers to USB media creation chapter.Samuel Dionne-Riel2018-01-03
| | | | | | | | | | | | | | | | | | | | | This: * Removes contradiction with information in the later paragraph. * Removes a dead link to the Wiki.
| * | Merge pull request #33196 from obsidiansystems/bintools-release-noteJohn Ericson2017-12-30
| |\ \ | | | | | | | | doc: Breaking change release note for bintools-wrapper
* | | | lightdm-gtk-greater: add configuration options for clock format and indicatorsJosé Romildo Malaquias2018-01-06
| | | |
* | | | nixos/memcached: make unix sockets usuableJörg Thalheim2018-01-03
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | before: - /var/run/memcached is a bad default for a socket path, since its parent directory must be writeable by memcached. - Socket directory was not created by the module itself -> this was left as a burden to the user? - Having a static uid with a dynamic user name is not very useful. after: - Replace services.memcached.socket by a boolean flag. This simplifies our code, since we do not have to check if the user specifies a path with a parent directory that should be owned by memcached (/run/memcached/memcached.sock -> /run/memcached). - Remove fixed uid/gid allocation. The only file ever owned by the daemon is the socket that will be recreated on every start. Therefore user and group ids do not need to be static. - only create the memcached user, if the user has not specified a different one. The major use case for changing option is to allow existing services (such as php-fpm) opening the local unix socket. If we would unconditionally create a user that option would be useless.
* | | Merge pull request #26805 from obsidiansystems/cross-elegantJohn Ericson2017-12-30
|\ \ \ | | | | | | | | Make cross compilation elegant
| * | | doc: Breaking change release not for dependency propagation logicJohn Ericson2017-12-30
| | |/ | |/|
* | | Merge branch 'ericson2314-cross-base' into stagingJohn Ericson2017-12-30
|\| |
| * | doc: Breaking change release note for bintools-wrapperJohn Ericson2017-12-30
| | |
* | | release-notes 18.03: fixup build after 553e8be1Vladimír Čunát2017-12-29
| | |
* | | release-notes 18.03: add MariaDB update notesRobin Gloster2017-12-29
| |/ |/|
* | Merge pull request #31668 from rycee/doc/namingYegor Timoshenko2017-12-23
|\ \ | | | | | | docs: clarify package and module option naming
| * | docs: clarify package and module option namingRobert Helgesson2017-11-14
| | | | | | | | | | | | | | | This attempts to briefly clarify the current naming conventions of attribute names in `all-packages.nix` and module option names.
* | | Revert "nixos: doc: implement related packages in the manual"Graham Christensen2017-12-23
| | |
* | | Merge pull request #32424 from oxij/nixos/related-packagesArseniy Seroka2017-12-23
|\ \ \ | | | | | | | | nixos: doc: implement related packages in the manual
| * | | nixos, lib: implement relatedPackages optionJan Malakhovski2017-12-07
| | | | | | | | | | | | | | | | | | | | | | | | This allows one to specify "related packages" in NixOS that get rendered into the configuration.nix(5) man page. The interface philosophy is pretty much stolen from TeX bibliography.
| * | | nixos/doc: push all the `enable*' and `package*` options to the top of their ↵Jan Malakhovski2017-12-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | option group Why? Because this way configuration.nix(5) can be read linearly. Before: > virtualisation.xen.bootParams > ... > virtualisation.xen.enable > ... > virtualisation.xen.package > ... After: > virtualisation.xen.enable > virtualisation.xen.package > virtualisation.xen.bootParams > ...
* | | | Merge pull request #32540 from rnhmjoj/portrangeOrivej Desh2017-12-20
|\ \ \ \ | | | | | | | | | | nixos/doc: document the firewall port ranges options
| * | | | nixos/doc: document the firewall port ranges optionsrnhmjoj2017-12-21
| | |_|/ | |/| |
* / | | doc: system.environmentPackages -> environment.systemPackagesYegor Timoshenko2017-12-20
|/ / /
* | | Merge pull request #31068 from dalaing/fdisk-examplesSamuel Leathers2017-12-17
|\ \ \ | | | | | | | | nixos manual: Adds some examples of how to use fdisk.
| * | | nixos manual: Adds some examples of how to use fdisk.Dave Laing2017-11-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also unifies the BIOS and UEFI installation instructions. It's a fairly basic usage, but it makes explicity the fact that you should at least have a main partition and a swap partition, and will save some users a bit of internet searching while they are getting set up.
* | | | nixos/btrfs: add services.btrfs.autoScrubFlorian Jacob2017-12-13
| | | | | | | | | | | | | | | | | | | | for automatic regular scrubbing of mounted btrfs filesystems, similar to what's already there for zfs.