summary refs log tree commit diff
path: root/nixos/modules/config/networking.nix
Commit message (Collapse)AuthorAge
* networking config: specify resolv.conf options as list of stringsJoachim Fasting2016-05-28
|
* networking config: support setting resolv.conf optionsChristian Zagrodnick2016-05-28
| | | | Closes: #11372
* Merge recent 'staging' into closure-sizeVladimír Čunát2016-02-03
|\ | | | | | | Let's get rid of those merge conflicts.
| * nixos: fix evaluationTobias Geerinckx-Rice2016-01-20
| | | | | | | | | | | | | | After commit 5e468b9, evaluation failed with: error: undefined variable ‘dnsExtensionMechanism’ at .../nixpkgs/nixos/modules/config/networking.nix:177:33
| * nixos: add 'networking.dnsExtensionMechanism' option to enable edns0 (for ↵Peter Simons2016-01-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DNSSEC) Set this option to 'true' (default: 'false') to enable extension mechanisms for DNS (EDNS) in your local glibc resolver. This is required for supporting DNSSEC, for example. Implementation detail: the patch changes assignments to "resolv_conf_options" to use "+=" instead of "=" to ensure that multiple users of that variable don't overwrite each other. The generated config file is a shell script, after all, so this should work fine. Closes https://github.com/NixOS/nixpkgs/issues/12470.
* | Merge branch 'master' into closure-sizeLuca Bruno2015-12-11
|\|
| * set all_proxy environment variableSergey Mironov2015-12-11
| |
* | nixos/networking: Reference correct glibc outputTuomas Tynkkynen2015-10-03
|/
* networking module: add extraResolvconfConf optionThomas Strobel2015-09-26
|
* Get rid of a warning about dbus in the activation scriptEelco Dolstra2014-12-12
|
* Improve readability - from ↵Antoine R. Dumont2014-11-30
| | | | https://github.com/NixOS/nixpkgs/pull/5058#discussion_r21043552
* Introduce a dedicated networking.proxy optionAntoine R. Dumont2014-11-30
| | | | | | | | | | | | Following the discussion NixOS#5021: - obsolete the nix.proxy option - add the networking.proxy option - open a default no_proxy environment variable - add a rsync option - Manual tests ok. - Automatic tests ok. Amended by lethalman to simplify the option descriptions.
* nixos/networking: FixesWilliam A. Kennington III2014-11-26
|
* nixos/networking: Rebuild resolvconf during activationWilliam A. Kennington III2014-11-26
| | | | | | | This is needed when /etc/resolv.conf is being overriden by networkd and other configurations. If the file is destroyed by an environment activation then it must be rebuilt so that applications which interface with /etc/resolv.conf directly don't break.
* networkd: Support Host ResolvconfWilliam A. Kennington III2014-11-26
|
* systemd: Enable more network servicesWilliam A. Kennington III2014-11-26
|
* dnsmasq: upgrade to 2.71, fixed dnsmasq modulePaul Colomiets2014-08-28
| | | | | | | | | | | | | | * The module now has systemd config * Add resolveLocalQueries option which sets up it as a dns server for local host (including reasonable setup of resolvconf) * Add "dnsmasq" user for running daemon * Enabled dbus and dnssec support for the package Conflicts: nixos/modules/misc/ids.nix
* Get all lib functions from lib, not pkgs.lib, in modulesShea Levy2014-07-02
|
* Rewrite ‘with pkgs.lib’ -> ‘with lib’Eelco Dolstra2014-04-14
| | | | | | | | Using pkgs.lib on the spine of module evaluation is problematic because the pkgs argument depends on the result of module evaluation. To prevent an infinite recursion, pkgs and some of the modules are evaluated twice, which is inefficient. Using ‘with lib’ prevents this problem.
* Add lots of missing option typesEelco Dolstra2013-10-30
|
* Move all of NixOS to nixos/ in preparation of the repository mergeEelco Dolstra2013-10-10