summary refs log tree commit diff
path: root/nixos
Commit message (Collapse)AuthorAge
* Merge pull request #22124 from mayflower/feature/frabFranz Pletz2017-01-27
|\ | | | | frab: init at 2016-12-28 & module
| * frab module: initFranz Pletz2017-01-25
| |
* | fluentd module: add configurable package optionDan Peebles2017-01-27
| |
* | nixos/release-small.nix: cleanup to use default versionsRobin Gloster2017-01-27
| | | | | | | | | | It makes more sense to test the packages, that probably more people are using.
* | apacheHttpd_2_2: removeRobin Gloster2017-01-27
| |
* | dbus: catch new services without reboot (#20871)Guillaume Maudoux2017-01-27
| | | | | | | | | | DBus daemon now loads its config from /run/current-system/dbus. Reloading the daemon makes it re-read that file and catch the updates after a system upgrade.
* | pythonPackages.ansible2: move 2.2 to separate file, make defaultFrederik Rietdijk2017-01-27
| | | | | | | | `pythonPackages.ansible_2_2` is now the default `ansible`.
* | Fix typo in pulseaudio.nixMike Cooper2017-01-26
| |
* | Merge pull request #22117 from dezgeg/aarch64-for-mergeTuomas Tynkkynen2017-01-26
|\ \ | | | | | | Aarch64 (ARM64) support
| * | installer: sd-image-*.nix: Document how to build themTuomas Tynkkynen2017-01-25
| | |
| * | installer: Add SD image expression for Aarch64Tuomas Tynkkynen2017-01-25
| | | | | | | | | | | | This one works on the Raspberry Pi 3 so far.
| * | U-Boot: Add 64-bit Raspberry Pi 3 buildTuomas Tynkkynen2017-01-25
| | | | | | | | | | | | And rename the old ubootRaspberryPi3 to ubootRaspberryPi3_32bit.
* | | locate: build in correct dbpathGregor Kleen2017-01-26
| | |
* | | locate: enhance mlocate supportGregor Kleen2017-01-26
| | |
* | | locate: better mlocate support & cleanupGregor Kleen2017-01-26
| | |
* | | tests.bittorrent: use a file instead of a directoryRobin Gloster2017-01-26
| |/ |/| | | | | nixUnstable.src is a directory, which made cp fail without -r
* | Merge pull request #21311 from makefu/services/logstashRobin Gloster2017-01-25
|\ \ | | | | | | services.logstash: default options, examples and address update
| * | services.logstash: rename address to listenAddressmakefu2017-01-13
| | |
| * | services.logstash: update example and default filtermakefu2017-01-13
| | |
* | | nixos/doc/installing: Fix typo in <literal/>aszlig2017-01-25
| | | | | | | | | | | | | | | | | | | | | | | | The tag wasn't properly closed which caused the manual build to fail. Tested with: nix-build nixos/release.nix -A manual.x86_64-linux Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | factorio: remove autosave-interval from command-line optionsShaun Sharples2017-01-25
| | |
* | | factorio: settings moved from command-line options to server-settings.jsonShaun Sharples2017-01-25
| | |
* | | installing: document how to activate SSH during installationPascal Bach2017-01-25
| | |
* | | install-device: correct command to start sshdPascal Bach2017-01-25
| | |
* | | install-device: permit root login with passwordPascal Bach2017-01-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow password login to the installation this allows doing remote installation via SSH. All that need to be done on the local machine is: 1. Boot from the installation media 2. Set a password with passwd 3. Enable SSH with systemctl start sshd It is safe as root doesn't have a password by default and SSH is disabled by default. Fixes #20718
* | | nixos/acme: add random delay to timerFranz Pletz2017-01-25
| | | | | | | | | | | | | | | This way we behave like good citizens and won't overload Let's Encrypt with lots of cert renewal requests at the same time.
* | | add kresd service with basic optionsVladimír Čunát2017-01-25
| | | | | | | | | | | | Still celebrating today's 1.2.0 release!
* | | tests.installer: rely on swap.target in testsRobin Gloster2017-01-25
| | | | | | | | | | | | fixes #5258
* | | nginx: added serverName option for virtualHostsBob van der Linden2017-01-25
| | | | | | | | | | | | | | | | | | | | | | | | This allows overriding the `server_name` attribute of virtual hosts. By doing so it is possible to have multiple virtualHost definitions that share the same `server_name`. This is useful in particular when you need a HTTP as well as a HTTPS virtualhost: same server_name, different port.
* | | Merge pull request #22034 from mayflower/conntrack-helpersFranz Pletz2017-01-25
|\ \ \ | | | | | | | | Disable conntrack helper autoloading by default
| * | | nixos/release-notes: document conntrack helper changesFranz Pletz2017-01-25
| | | |
| * | | nixos/tests/nat: add test for conntrack helper autoloadingFranz Pletz2017-01-25
| | | |
| * | | firewall: disable conntrack helper autoloading by defaultFranz Pletz2017-01-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This was disabled in the Linux kernel since 4.7 and poses a security risk if not configured properly. https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=486dcf43da7815baa615822f3e46883ccca5400f
| * | | linux: remove canDisableNetfilterConntrackHelpers featureFranz Pletz2017-01-25
| | |/ | |/| | | | | | | This feature is available in all kernels in nixpkgs.
* | | Merge pull request #22103 from copumpkin/automatic-kafka-broker-idDaniel Peebles2017-01-24
|\ \ \ | |/ / |/| | apache-kafka service: change default brokerId to -1
| * | apache-kafka service: change default brokerId to -1Dan Peebles2017-01-24
| | | | | | | | | | | | | | | A default of 0 means that if you deploy two NixOS boxes with the default configuration, the second will fail because the brokerId was already in use. Using -1 instead tells it to pick one automatically at first start.
* | | Merge pull request #22107 from Ericson2314/cross-tepidJohn Ericson2017-01-24
|\ \ \ | | | | | | | | Somewhat saner cross-compiling through bootstrapping
| * | | nixos doc: Mention cross overhaul in 17.03 release notesJohn Ericson2017-01-24
| | | |
* | | | nixos/kde5: use kimpanel with IBus by defaultThomas Tuegel2017-01-24
| | | |
* | | | nixos/ibus: fix custom panel exampleThomas Tuegel2017-01-24
| | | | | | | | | | | | | | | | | | | | The example was missing a `''`, so it did not appear correctly in the manual. This also caused the manual to retain references inappropriately.
* | | | Merge pull request #22066 from mbrgm/journalbeatMichael Raskin2017-01-24
|\ \ \ \ | | | | | | | | | | journalbeat service: init at 5.1.2
| * | | | journalbeat service: init at 5.1.2Marius Bergmann2017-01-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Journalbeat is a log shipper from systemd/journald to Logstash/Elasticsearch. I added a package as well as a NixOS service module for it.
* | | | | Merge pull request #22045 from rnhmjoj/recursorMichael Raskin2017-01-24
|\ \ \ \ \ | | | | | | | | | | | | PowerDNS Recursor: add package and service
| * | | | | pdns-recursor: add servicernhmjoj2017-01-23
| | | | | |
* | | | | | Merge pull request #22028 from MostAwesomeDude/tahoeMichael Raskin2017-01-24
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | Tahoe-LAFS version bump
| * | | | | nixos/services/tahoe: Work around awkward command.Corbin2017-01-23
| |/ / / /
* | | | | vnstat service: init (#19809)Kai2017-01-24
| | | | |
* | | | | smokeping: setuid for fping6Tristan Helmich2017-01-24
| |_|/ / |/| | |
* | | | nixos programs.man.enable: improve descriptionVladimír Čunát2017-01-24
| | | |
* | | | installer: Include stdenvNoCCTuomas Tynkkynen2017-01-23
| |/ / |/| | | | | | | | | | | And don't include ArchiveCpio as that one is no longer needed after 5a8147479 ("make-initrd: create reproducible initrds").