summary refs log tree commit diff
path: root/nixos/modules/services
Commit message (Collapse)AuthorAge
* Remove obsolete xfceutils attributeEelco Dolstra2013-10-30
|
* smartd.nix: Fix broken option typeEelco Dolstra2013-10-30
|
* 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
|
* Give types to the Apache httpd optionsEelco Dolstra2013-10-29
|
* wpa_supplicant.nix: Add option typesEelco Dolstra2013-10-29
|
* nixos: zope2 service: adding clientHome optionRok Garbas2013-10-29
|
* Fix evaluation error in the tomcat testEelco Dolstra2013-10-29
|
* Don't copy Nix expressions to the store while processing Apache subservicesEelco Dolstra2013-10-29
|
* Remove obsolete function addDefaultOptionValuesEelco Dolstra2013-10-28
|
* Implement services.httpd.virtualHosts using the module systemEelco Dolstra2013-10-28
|
* Remove remaining uses of mkOverrideTemplateEelco Dolstra2013-10-28
|
* Rename environment.nix -> nix.packageEelco Dolstra2013-10-28
|
* 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.
* Check for undeclared optionsEelco Dolstra2013-10-28
|
* Fix bogus mkOption typesEelco Dolstra2013-10-28
| | | | | Among others, systemd unit options were not being type-checked because of this. mkOption should really check its arguments better...
* Fix manual generationEelco Dolstra2013-10-28
|
* Manual: Fix bad \" charactersEelco Dolstra2013-10-28
|
* Remove uses of mkFixStrictnessEelco Dolstra2013-10-28
| | | | mkFixStrictness is no longer needed, woohoo!
* openvpn.nix: Improve typesEelco Dolstra2013-10-28
|
* Remove dead codeEelco Dolstra2013-10-28
|
* nixos/redis: log to syslog by defaultJaka Hudoklin2013-10-28
|
* nixos/redis: user set uid, make it compatible #1076Jaka Hudoklin2013-10-28
|
* nixos/graphite: limit amount of log message defaultsJaka Hudoklin2013-10-28
|
* nixos/graphite: graphite requires pidfile set for startupJaka Hudoklin2013-10-28
|
* Adding Quantum Minigolf gameMichael Raskin2013-10-28
|
* firebird.nix: Fix a misplaced } that causes "users" to be outside "config"Eelco Dolstra2013-10-25
|
* Ensure that the manual job gets build with the right revision infoEelco Dolstra2013-10-24
|
* Manual: When building from the channel, link to the exact Git revisionEelco Dolstra2013-10-24
|
* Remove dependencies on the Nixpkgs locationEelco Dolstra2013-10-23
|
* munin: fix documentation linksDomen Kožar2013-10-23
|
* Merge pull request #1106 from ocharles/redshiftDomen Kožar2013-10-22
|\ | | | | services.redshift: New service
| * services.redshift: New serviceOliver Charles2013-10-22
| |
* | Firebird service:Marc Weber2013-10-21
| | | | | | | | | | | | | | | | | | | | * simplify directory layout * clean up option descriptions * let the user override Firebird package * create firebird user * clarify TODO comment Close # 1061.
* | postgresql.authMethod: remove unimplemented option.Evgeny Egorochkin2013-10-21
| | | | | | | | close #1104.
* | xserver.s3tcSupport: fix typo, improve description.Evgeny Egorochkin2013-10-21
|/
* nix-gc: Revert to "script" instead of ExecStartEelco Dolstra2013-10-21
| | | | | There is an assumption that cfg.options can contain shell code, so ExecStart doesn't work here.
* munin: add test and fix a bugDomen Kožar2013-10-20
|
* 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.
* | Merge pull request #1090 from NixOS/munin-reworkDomen Kožar2013-10-20
|\ \ | | | | | | munin: refactor package and add nixos service
| * | munin: refactor package and add nixos serviceDomen Kožar2013-10-20
| | |
* | | zope2 service... indentation fixRok Garbas2013-10-20
| | |
* | | Add services.xserver.s3tcSupport optionEvgeny Egorochkin2013-10-19
| | |
* | | mkEnableOption: Add a period at the end of the descriptionEelco Dolstra2013-10-17
| | |
* | | Make manual generation not depend on the user's configurationEelco Dolstra2013-10-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously changing the value of certain options in configuration.nix would cause the manual to be regenerated, because some option defaults depend on the configuration. This is undesirable because rebuilding the manual is kind of slow. So now the manual reflects an empty configuration. The downside is that this requires another call to fixMergeModules, which adds about 14% to evaluation time. Probably worth it.