summary refs log tree commit diff
path: root/nixos
Commit message (Collapse)AuthorAge
* oauth2_proxy: use explicit upstream default for setXauthrequestYorick van Pelt2018-04-27
|
* oauth2_proxy: add keyFile, make some options optionalYorick van Pelt2018-04-16
|
* oauth2_proxy: update module for extraConfig supportYorick van Pelt2018-04-16
|
* nixos/pulseaudio: pulseaudio.enable should imply sound.enableJörg Thalheim2018-04-14
| | | | cc @fpletz
* Merge pull request #38929 from Mic92/lxdJörg Thalheim2018-04-14
|\ | | | | lxd: 2.16 -> 3.0.0; fixes build
| * lxd: 2.16 -> 3.0.0Jörg Thalheim2018-04-14
| |
* | docker-tools: add a test for permissions issues with AUFS/overlayDaiderd Jordan2018-04-14
|/ | | | | | | | | | | | | | docker# [ 11.054736] d24d6cdd57c9[763]: /bin/bash: error while loading shared libraries: libreadline.so.7: cannot open shared object file: Permission denied docker# /bin/bash: error while loading shared libraries: libreadline.so.7: cannot open shared object file: Permission denied docker: exit status 127 docker: output: error: command `docker run --rm -u 1000:1000 bash /bin/bash --version' did not succeed (exit code 127) command `docker run --rm -u 1000:1000 bash /bin/bash --version' did not succeed (exit code 127)
* nixos/transmission: fix AppArmor profile to include libkrb5Ricardo M. Correia2018-04-13
|
* nixos: enable bash command completion by defaultBjørn Forsman2018-04-13
| | | | | | | | Because it improves out-of-the-box user experience a lot (IMHO). (zsh completion is already on by default.) Remove "programs.bash.enableCompletion = true" from nixos-generate-config.pl, which feels superflous now.
* Fix kernel-copperhead testTim Steinbach2018-04-13
|
* Merge pull request #38896 from abbradar/shadowsocksNikolay Amiantov2018-04-13
|\ | | | | Update shadowsocks-libuv and add shadowsocks service
| * shadowsocks service: initNikolay Amiantov2018-04-13
| |
* | dnscache service: cleanup and add forwardOnlyNikolay Amiantov2018-04-13
| |
* | dnscache service: fix bug with several assigned DNS serversNikolay Amiantov2018-04-13
|/
* Merge pull request #38885 from lopsided98/grafana-unix-socketJörg Thalheim2018-04-13
|\ | | | | grafana: support socket protocol
| * grafana: support socket protocolBen Wolsieffer2018-04-12
| |
* | Merge pull request #38820 from brainrape/nixos-prosody-add-user-groupRobert Schütz2018-04-13
|\ \ | | | | | | nixos/prosody: add user/group options, fix pidfile path
| * | nixos/prosody: fix pidfile pathMárton Boros2018-04-13
| | |
| * | nixos/prosody: add user, group optionsMárton Boros2018-04-13
| |/
* | Merge pull request #38704 from roconnor-blockstream/trezoradisbladis2018-04-12
|\ \ | | | | | | trezord: 1.2.1 -> 2.0.12
| * | trezord: 1.2.1 -> 2.0.12Russell O'Connor2018-04-11
| | | | | | | | | | | | The old trezord is obsolete and no longer functions with Trezor's password manager app.
* | | exfat-utils, fuse_exfat -> exfatvolth2018-04-12
| |/ |/| | | `exfat-utils' and `fuse_exfat' are both aliases of `exfat'
* | nixos/postgresql: remove ancient hack for postgres 8.4Austin Seipp2018-04-11
| | | | | | | | Signed-off-by: Austin Seipp <aseipp@pobox.com>
* | Merge pull request #38773 from bandresen/zfsAutoSnapshotYegor Timoshenko2018-04-11
|\ \ | | | | | | zfs.autoSnapshot: make `frequent` run every 15 mins
| * | zfs.autoSnapshot: make `frequent` run every 15 minsBenjamin Andresen2018-04-11
| | | | | | | | | | | | fixes bug that there is 30 minutes between hh:45 and hh:15 every hour.
* | | Merge staging into masterFrederik Rietdijk2018-04-11
|\ \ \
| * | | Merge master into stagingFrederik Rietdijk2018-04-10
| |\| |
| * | | Merge branch 'master' into stagingRobert Schütz2018-04-10
| |\ \ \
| * \ \ \ Merge master into stagingFrederik Rietdijk2018-04-09
| |\ \ \ \
| * | | | | Increase max group name length to 32 charactersaszlig2018-04-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With #36556, a check was introduced to make sure the user and group names do not exceed their respective maximum length. This is in part because systemd also enforces that length, but only at runtime. So in general it's a good idea to catch as much as we can during evaluation time, however the maximum length of the group name was set to 16 characters according groupadd(8). The maximum length of the group names however is a compile-time option and even systemd allows more than 16 characters. In the mentioned pull request (#36556) there was already a report that this has broken evaluation for people out there. I have also checked what other distributions are doing and they set the length to either 31 characters or 32 characters, the latter being more common. Unfortunately there is a difference between the maximum length enforced by the shadow package and systemd, both for user name lengths and group name lengths. However, systemd enforces both length to have a maximum of 31 characters and I'm not sure if this is intended or just a off-by-one error in systemd. Nevertheless, I choose 32 characters simply to bring it in par with the maximum user name length. For the NixOS assertion however, I use a maximum length of 31 to make sure that nobody accidentally creates services that contain group names that systemd considers invalid because of a length of 32 characters. Signed-off-by: aszlig <aszlig@nix.build> Closes: #38548 Cc: @vcunat, @fpletz, @qknight
| * | | | | Merge master into stagingFrederik Rietdijk2018-04-08
| |\ \ \ \ \
| * \ \ \ \ \ Merge master into stagingFrederik Rietdijk2018-04-05
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge master into stagingFrederik Rietdijk2018-04-04
| |\ \ \ \ \ \ \
| * | | | | | | | Machine.pm: tweak to look for graphical target in waitForXWill Dietz2018-04-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Current message may not be printed (nothing in systemd contains that string, it comes from elsewhere)
| * | | | | | | | Merge remote-tracking branch 'upstream/master' into stagingTuomas Tynkkynen2018-04-03
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: pkgs/top-level/all-packages.nix
| * | | | | | | | | nixos testing: significantly reduce deps needed for OCR testsWill Dietz2018-03-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of imagemagick built with many libraries (notably librsvg which these days requires rust) use imagemagick_light with support for libtiff added.
| * | | | | | | | | Merge remote-tracking branch 'upstream/master' into HEADFrederik Rietdijk2018-03-30
| |\ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ Merge remote-tracking branch 'origin/master' into stagingShea Levy2018-03-28
| |\ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ Merge pull request #37840 from matthewbauer/unixtoolsMatthew Justin Bauer2018-03-27
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Cross-platform "unixtools"
| * | | | | | | | | | | | opengl service: don't override mesa non-drivers in runtimeNikolay Amiantov2018-03-26
| | | | | | | | | | | | |
| * | | | | | | | | | | | qemu-vm service: quote arguments in qemu runnerNikolay Amiantov2018-03-26
| | | | | | | | | | | | |
| * | | | | | | | | | | | xserver service: cleanup LD_LIBRARY_PATHNikolay Amiantov2018-03-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | X libraries in LD_LIBRARY_PATH seem to not be needed anymore. I've tracked this addition as far as I could (02cef04c8187f12fd160d5fedf0ec8a928f02639) and they seem to be added for unfree NVIDIA and ATI drivers but at least for NVIDIA they are not needed anymore. We can add them with patchelf instead if it turns out to be the case with ATI.
| * | | | | | | | | | | | opengl service: move options under common hardware.opengl treeNikolay Amiantov2018-03-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Purely cosmetic.
| * | | | | | | | | | | | nvidia service: rely on libglvndNikolay Amiantov2018-03-26
| | | | | | | | | | | | |
| * | | | | | | | | | | | wrapper.c: fixup includes to work w/muslWill Dietz2018-03-25
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge branch 'master' into stagingShea Levy2018-03-24
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|_|_|_|/ | | |/| | | | | | | | | |
| * | | | | | | | | | | | Merge pull request #37647 from abbradar/systemd-238Nikolay Amiantov2018-03-23
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | [WIP] Update systemd and unbreak staging
| | * | | | | | | | | | | | systemd: 237 -> 238Nikolay Amiantov2018-03-22
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | safeeyes: restart only on failureBjornMelgaard2018-04-10
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | safeeyes: add moduleBjornMelgaard2018-04-10
| |_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | |