summary refs log tree commit diff
path: root/nixos/modules/services/networking
Commit message (Collapse)AuthorAge
* networkmanager: load modules required for PPTPThomas Tuegel2014-01-24
|
* Adds kippo SSH honeypotThomas Bereknyei2014-01-14
|
* connman-vpn and connman-vpn dbus servise should start after connman serviceRok Garbas2014-01-11
|
* connman: new packages ConnMan v1.20 and connman-uiMatej Cotman2014-01-11
|
* networkmanager: register PPTP serviceThomas Tuegel2014-01-02
|
* network-interfaces: Add the ability to create bond devicesWilliam A. Kennington III2013-12-31
| | | | | | | | This patch adds support for the creations of new bond devices, aggregate pipes of physical devices for extra throughput or failover. Additionally, add better correction at the startup of a bridge of vlan interface (delete old, stale interfaces).
* nixos: don't white-list port 8200 in the firewall when minidlna is enabledPeter Simons2013-12-23
| | | | | | | | | | | | | If you want minidla to accept connections from the rest of the world, please add networking.firewall.allowedTCPPorts = [ 8200 ]; networking.firewall.allowedUDPPorts = [ 1900 ]; to /etc/nixos/configuration.nix. See <http://lists.science.uu.nl/pipermail/nix-dev/2013-November/011997.html> for the discussion that lead to this.
* Make Ejabberd service workMichael Raskin2013-12-20
|
* Merge pull request #1362 from tomberek/ddclient_correctionMichael Raskin2013-12-14
|\ | | | | Correct web-skip value to match behavior of checkip.dyndns.com
| * Correct web-skip value to match behavior of checkip.dyndns.comThomas Bereknyei2013-12-11
| |
* | nixos: add ntopng serviceBjørn Forsman2013-12-09
|/ | | | | | | | | | ntopng is a high-speed web-based traffic analysis and flow collection tool. Enable it by adding this to configuration.nix: services.ntopng.enable = true; Open a browser at http://localhost:3000 and login with the default username/password: admin/admin.
* nixos/avahi-service: small documentation updateBjørn Forsman2013-12-07
|
* Disable various services when running inside a containerEelco Dolstra2013-11-26
|
* networkmanager NixOS service: Make it possible to append or insert name ↵Rickard Nilsson2013-11-13
| | | | servers in /etc/resolv.conf
* Add some primops to libEelco Dolstra2013-11-12
|
* changes proposed for 13-10 updateVladimír Čunát2013-11-09
|\ | | | | | | One feature change: polkit update 8d14c7ba
| * polkit: major update 0.105 -> 0.112Vladimír Čunát2013-11-09
| | | | | | | | | | | | | | - It now uses JavaScript for configuration (only), so I had to "convert" config for NetworkManager. - I tested suspend/restart/(un)mount on KDE/Xfce, Phreedom tested NetworkManager config conversion.
* | vsftpd: Disable seccomp filtering on 64-bitEelco Dolstra2013-11-07
| | | | | | | | | | | | | | | | | | | | It worked on Linux 3.4 but fails with "500 OOPS: priv_sock_get_cmd" since we updated the default kernel to 3.10. http://hydra.nixos.org/build/6715359 https://bugzilla.redhat.com/show_bug.cgi?id=845980 https://bugzilla.novell.com/show_bug.cgi?id=786024
* | vsftpd: Run in the background and log to syslog (i.e. journal)Eelco Dolstra2013-11-07
| |
* | Clean up the vsftpd module a bitEelco Dolstra2013-11-07
| |
* | Loosen the type of SSH key filesEelco Dolstra2013-11-01
|/
* Remove remaining references to UpstartEelco Dolstra2013-10-31
|
* Use the "assertions" option instead of mkAssertEelco Dolstra2013-10-30
|
* Add lots of missing option typesEelco Dolstra2013-10-30
|
* Clean up some option examplesEelco Dolstra2013-10-30
|
* Strictly check the arguments to mkOptionEelco Dolstra2013-10-30
| | | | And fix various instances of bad arguments.
* Substitute "types.uniq types.string" -> "types.str"Eelco Dolstra2013-10-30
|
* Remove the dhclient moduleEelco Dolstra2013-10-29
| | | | It's no longer used by NixOS (replaced by dhcpcd).
* Manual: Render multi-line strings properlyEelco Dolstra2013-10-29
|
* nixos: haproxy moduleRok Garbas2013-10-29
|
* wpa_supplicant.nix: Add option typesEelco Dolstra2013-10-29
|
* Remove uses of the "merge" option attributeEelco Dolstra2013-10-28
| | | | | It's redundant because you can (and should) specify an option type, or an apply function.
* openvpn.nix: Improve typesEelco Dolstra2013-10-28
|
* Adding Quantum Minigolf gameMichael Raskin2013-10-28
|
* Remove dependencies on the Nixpkgs locationEelco Dolstra2013-10-23
|
* Allow non-SSL connections to vsftpd by default to let tests not specify ↵Michael Raskin2013-10-20
| | | | certificate
* Add apparently missing option to vsftpd configurationMichael Raskin2013-10-20
|
* Merge pull request #1060 from MarcWeber/submit/vsftpdMichael Raskin2013-10-20
|\ | | | | small vsftpd improvements
| * experimental/vsftpdMarc Weber2013-10-12
| | | | | | | | | | | | | | | | | | | | vsftpd improvements: - intorduce one declarative list of options - make docummentation strings more understandable and add missing options such as SSL/TLS support - Use environment.etc."vsftpd".text because I can't think about any reason why a shell script should be used. That code was written in 2009.
* | sshd: Remove the usePAM optionEelco Dolstra2013-10-15
| | | | | | | | | | | | | | Sshd *must* use PAM because we depend on it for proper session management. The original goal of this option (disabling password logins) can also be implemented by removing pam_auth authentication from sshd's PAM service.
* | Turn security.pam.services into an attribute setEelco Dolstra2013-10-15
|/ | | | | | | | | | | | That is, you can say security.pam.services.sshd = { options... }; instead of security.pam.services = [ { name = "sshd"; options... } ]; making it easier to override PAM settings from other modules.
* Move all of NixOS to nixos/ in preparation of the repository mergeEelco Dolstra2013-10-10