summary refs log tree commit diff
path: root/nixos
Commit message (Collapse)AuthorAge
* Fix init= stage 1 testShea Levy2014-11-12
|
* Add local-fs.target to minidlna.Moritz Ulrich2014-11-12
| | | | | Minidlna fails to start if it wants to access a filesystem which isn't mounted (yet).
* Merge pull request #4950 from joachifm/dnscrypt-proxyMichael Raskin2014-11-13
|\ | | | | dnscrypt-proxy service
| * Add dnscrypt-proxy serviceJoachim Fasting2014-11-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The dnscrypt-proxy service relays regular DNS queries to a DNSCrypt enabled upstream resolver. The traffic between the client and the upstream resolver is encrypted and authenticated, which may mitigate the risk of MITM attacks and third-party snooping (assuming a trustworthy upstream). Though dnscrypt-proxy can run as a standalone DNS client, the recommended setup is to use it as a forwarder for a caching DNS client. To use dnscrypt-proxy as a forwarder for dnsmasq, do ```nix { # ... networking.nameservers = [ "127.0.0.1" ]; networking.dhcpcd.extraConfig = "nohook resolv.conf"; services.dnscrypt-proxy.enable = true; services.dnscrypt-proxy.localAddress = "127.0.0.1"; services.dnscrypt-proxy.port = 40; services.dnsmasq.enable = true; services.dnsmasq.extraConfig = '' no-resolv server=127.0.0.1#40 listen-address=127.0.0.1 ''; # ... } ```
* | Merge pull request #4929 from abbradar/prl-toolsMichael Raskin2014-11-13
|\ \ | | | | | | Add packages and support for Parallel Guest Tools
| * | nixos/parallels-guest: add optionsNikolay Amiantov2014-11-12
| |/
* | Merge pull request #4573 from fpletz/feature/lxc-configurationMichael Raskin2014-11-13
|\ \ | | | | | | Add support for global LXC config files
| * | Add support for global LXC config filesFranz Pletz2014-10-18
| | |
* | | Disable zfs in the ISO for nowEelco Dolstra2014-11-12
| | | | | | | | | | | | | | | | | | It's giving zpool-import.service errors. http://hydra.nixos.org/build/16883184
* | | apache-httpd: add mod_access_compat for compatibility with old httpd-22 ↵Longrin Wischnewski2014-11-12
| |/ |/| | | | | configurations
* | nixos: move bcache udev rule in a new bcache.nix moduleLuca Bruno2014-11-10
| |
* | nixos: Add boot.initrd.extraUdevRulesCommandsLuca Bruno2014-11-10
| |
* | Add "light" package and setuid wrapperBrian McKenna2014-11-09
| |
* | Merge pull request #4282 from sztupi/crashplanMichael Raskin2014-11-09
|\ \ | | | | | | | | | | | | Crashplan OK, it is an external service with unfree client, so let's declare that ensuring usability of the service is not our headache.
| * | crashplan: nixos module for backup serviceAttila Sztupak2014-09-26
| | |
* | | i2pd: added package, serviceEdward Tjörnhammar2014-11-09
| | |
* | | cjdns: service tweaks, new NixOS testEmery Hemingway2014-11-08
| | |
* | | xfce4-volumed: add package (close #4628)Nikolay Amiantov2014-11-08
| | |
* | | nixos-rebuild: reload dbus before starting other units. Closes #4546Luca Bruno2014-11-08
| | |
* | | Merge pull request #4823 from abbradar/synaptics-fixAristid Breitkreuz2014-11-08
|\ \ \ | | | | | | | | synaptics: fix tapButtons setting
| * | | synaptics: fix tapButtons settingNikolay Amiantov2014-11-04
| | | |
* | | | Merge pull request #4859 from abbradar/git-daemonAristid Breitkreuz2014-11-08
|\ \ \ \ | | | | | | | | | | nixos/git-daemon: fix a bug and add 'user' and 'group' options
| * | | | nixos/git-daemon: fix 'exportAll' optionNikolay Amiantov2014-11-07
| | | | |
| * | | | nixos/git-daemon: add 'user' and 'group' optionsNikolay Amiantov2014-11-07
| | | | |
| * | | | nixos/git-daemon: add typesNikolay Amiantov2014-11-07
| |/ / /
* | | | Merge pull request #4891 from pSub/prefer-xresourcesDomen Kožar2014-11-08
|\ \ \ \ | | | | | | | | | | Try to load Xresources, if that fails fall back to Xdefaults. Closes #4670
| * | | | Try to load Xresources, if that fails fall back to Xdefaults. Closes #4670Pascal Wittmann2014-11-08
| | | | |
* | | | | update-users-groups.pl: Use UTF-8 instead of latin1.Rüdiger Sonderfeld2014-11-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Perl seems to write the file in latin1 independent of the actual input encoding. This can corrupt the "description" field of /etc/passwd. By setting "binmode" to ":utf8" Perl can be forced to write UTF-8. Ideally the program would simply read/write the fields by value without any changes in encoding. However, assuming/enforcing UTF-8 is a lot better than using an obsolete coding like latin1.
* | | | | quassel: make a proper systemd unit (also properly works in containers now)Aristid Breitkreuz2014-11-08
| | | | |
* | | | | Revert "nixos: iso-image: use syslinux bootloader for USB booting support"Luca Bruno2014-11-08
| | | | | | | | | | | | | | | | | | | | This reverts commit 455db168b30d53c903c96be80ef843b79e0744ae.
* | | | | Revert "nixos: installation: make installation ISOs USB bootable"Luca Bruno2014-11-08
| | | | | | | | | | | | | | | | | | | | This reverts commit b7f6a138b13ca667464b31274a33124d252ebc8b.
* | | | | Merge pull request #4870 from bosu/docker-proxyJaka Hudoklin2014-11-08
|\ \ \ \ \ | |/ / / / |/| | | | docker: propagate nix.proxy into daemon environment
| * | | | docker: propagate nix.proxy into daemon environmentBoris Sukholitko2014-11-07
| | | | |
* | | | | Revert "Revert "syslog-ng: Update from 3.5.6 to 3.6.1""Rickard Nilsson2014-11-06
| | | | | | | | | | | | | | | | | | | | This reverts commit 8e1072fd60f9dcf5eac0bb2d604258f121b658d8.
* | | | | Fixes to Apache 2.4 configurationRickard Nilsson2014-11-06
| | | | |
* | | | | apache-httpd: Make 2.4 the defaultEelco Dolstra2014-11-06
| | | | | | | | | | | | | | | | | | | | | | | | | The NixOS 14.11 release is a good time to finally make 2.4 the default.
* | | | | thermald needs dbus config files to runEvgeny Egorochkin2014-11-06
| | | | |
* | | | | Merge pull request #4838 from abbradar/ssmtp-rootPeter Simons2014-11-05
|\ \ \ \ \ | | | | | | | | | | | | Add 'root' option to ssmtp
| * | | | | ssmtp: add 'root' optionNikolay Amiantov2014-11-05
| | | | | |
| * | | | | ssmtp: add types to optionsNikolay Amiantov2014-11-05
| | | | | |
* | | | | | nixos/graphite: fix user creationJaka Hudoklin2014-11-04
| | | | | |
* | | | | | nixos/transmission: Start after local-fs.targetRicardo M. Correia2014-11-04
| | | | | |
* | | | | | Fix tests.runInMachine evaluationEelco Dolstra2014-11-04
| | | | | |
* | | | | | nixos: Fix priorities of initialHashedPassword.aszlig2014-11-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Regression introduced in f496c3cbe4a6a2db88892d14609618e449744ed6. Previously when we used security.initialRootPassword, the default priority for this option was 1001, because it was a default value set by the option itself. With the mentioned commit, it is no longer an option default but a mkDefault, which is priority 1000. I'm setting this to 150 now, as test-instrumentation.nix is using this for overriding other options and because I think it still makes it possible to simple-override it, because if no priority is given, we get priority 100. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | | | | Merge pull request #4801 from robberer/pkgs/zabbix-serverlethalman2014-11-04
|\ \ \ \ \ \ | | | | | | | | | | | | | | zabbix-server: add extraConfig option
| * | | | | | zabbix-server: add extraConfig optionLongrin Wischnewski2014-11-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | add types to options
* | | | | | | Merge pull request #4238 from wkennington/master.boostPeter Simons2014-11-03
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Make boost 156 the default
| * | | | | | | Revert "syslog-ng: Update from 3.5.6 to 3.6.1"William A. Kennington III2014-11-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit e2ada42623f26d51cf7d1253ac0700297e1a9b83.
| * | | | | | | jfsrec: Remove derivationWilliam A. Kennington III2014-11-02
| |/ / / / / /
* | | | | | | Obsolete security.initialPasswordEelco Dolstra2014-11-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | You can now set users.extraUsers.root.initialHashedPassword instead.