summary refs log tree commit diff
path: root/nixos
Commit message (Collapse)AuthorAge
* Manual: Remove store path referencesEelco Dolstra2015-09-24
|
* ec2-data.nix: Print all SSH host keysEelco Dolstra2015-09-24
| | | | Also, don't barf if there is no DSA key.
* openvswitch module: do not fork servicesThomas Strobel2015-09-24
|
* nixos/tests/virtualbox: Destroy detectvirt VM.aszlig2015-09-24
| | | | | | | I forgot to do this in da0e642. It shouldn't be a big problem but it's more clean to destroy the VM once we're done testing. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* nixos/tests/virtualbox: Give VMs more memory.aszlig2015-09-24
| | | | | | | | | | | | | We previously had 1024 MB of memory to fit a VirtualBox VM with 512 MB plus the memory needed of the VirtualBox host VM. That obviously won't work for two VirtualBox VMs, which are used for testing networking between two VirtualBox guests. Now, we have 2048 MB on the qemu guest (the VirtualBox host) and 768 MB for each VirtualBox guest. That should be enough to fit in two VirtualBox guests (I hope). Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* nixos/manualPDF: use new `texlive` instead of `tetex`Vladimír Čunát2015-09-23
| | | | | This includes updating dblatex and crafting ~100 MB TeX package set to make our manual compile.
* Merge pull request #10009 from jerith666/postfix-recip-delimPeter Simons2015-09-23
|\ | | | | postfix service: fix recipientDelimiter not to be dependent on sslCert
| * postfix service: fix recipientDelimiter not to be dependent on sslCertMatt McHenry2015-09-22
| |
* | Merge: xlibs and x11 attribute cleanupVladimír Čunát2015-09-23
|\ \ | |/ |/| | | Frequently using multiple *almost* identical attributes is bad.
| * xlibs: replace occurrences by xorgVladimír Čunát2015-09-15
| | | | | | | | | | | | | | This seems to have been confusing people, using both xlibs and xorg, etc. - Avoided renaming local (and different) xlibs binding in gcc*. - Fixed cases where both xorg and xlibs were used. Hopefully everything still works as before.
* | ec2-data.nix: Support ed25519 host keysEelco Dolstra2015-09-23
| |
* | xtreemfs: set mrc and osd as dir dependenciesMatej Cotman2015-09-22
| |
* | xtreemfs: use mkEnableOption instead of mkOptionMatej Cotman2015-09-22
| |
* | xtreemfs: add nixos moduleMatej Cotman2015-09-22
| |
* | Merge pull request #9918 from khumba/synaptics-confNikolay Amiantov2015-09-22
|\ \ | | | | | | xf86-input-synaptics: make use of 50-synaptics.conf
| * | xf86-input-synaptics: make use of 50-synaptics.confBryan Gardiner2015-09-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The default synaptics functionality (without this file) is limited for clickpads: the right soft button area in the bottom right isn't active by default, so the entire pad generates left-clicks. There is no way to right-drag. This file defines soft button areas and provides some matching rules. These settings don't conflict with the synaptics options that NixOS provides.
* | | nixos/filesystems: Skip check for vboxsf.aszlig2015-09-21
| | | | | | | | | | | | | | | | | | | | | We don't even have any means to check a VirtualBox shared folder, so let's not even try to. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | nixos/filesystems: Improve vboxsf default options.aszlig2015-09-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The default options for all file systems currently are "defaults.relatime", which works well on file systems which support the relatime option. Unfortunately, this is not the case for the VirtualBox shared folder filesystem, so until now, you need to set something like: fileSystems."/foo" = { device = "foo"; fsType = "vboxsf"; options = "defaults"; }; Otherwise mounting the file system would fail. Now, we provide only the "defaults" option to the "vboxsf" file system, so something like this is enough: fileSystems."/foo" = { device = "foo"; fsType = "vboxsf"; }; An alternative to that could be to document that you need to set default options, but we really should do what users expect instead of forcing them to look up the documentation as to why this has failed. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | virtualbox service: add support for vboxsf guest filesystemJaka Hudoklin2015-09-21
| | | | | | | | | | | | | | | | | | | | | | | | Closes #9358 Signed-off-by: Jaka Hudoklin <jakahudoklin@gmail.com> Fix reference to bin/mount.vboxsf. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | tests/virtualbox: Add a subtest for host USB.aszlig2015-09-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unfortunately, we can't test whether USB is really working, but we can make sure that VirtualBox has access to the USB devices. This is essentially testing #9736, which I haven't yet been able to reproduce though, but it makes sense to test it so it won't happen in future releases. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | Update 15.09 release notesEelco Dolstra2015-09-21
| | |
* | | Style / typo fixesEelco Dolstra2015-09-21
| | |
* | | release-notes: properly close the item listEdward Tjörnhammar2015-09-21
| | |
* | | Revert "Don't evaluate haskellPackages when gitit is disabled"Edward Tjörnhammar2015-09-20
| | | | | | | | | | | | This reverts commit 99750d89dd962cc7011b02e487ed1a38c7842524.
* | | Remove Gitit from the list of evaluated modulesEdward Tjörnhammar2015-09-20
| | |
* | | Merge pull request #9930 from oxij/nixos-physlockArseniy Seroka2015-09-19
|\ \ \ | | | | | | | | nixos: add physlock service
| * | | nixos: add physlock serviceJan Malakhovski2015-09-18
| | | |
* | | | Merge pull request #9934 from offlinehacker/nixos/kibana/addDomen Kožar2015-09-19
|\ \ \ \ | | | | | | | | | | Update kibana, add kibana nixos service
| * | | | kibana service: initJaka Hudoklin2015-09-19
| | | | |
* | | | | Merge pull request #9925 from oxij/nixos-cleanups-and-fixesJaka Hudoklin2015-09-19
|\ \ \ \ \ | |/ / / / |/| | | | nixos types: cleanups and fixes
| * | | | nixos: fix some typesJan Malakhovski2015-09-18
| | | | |
| * | | | nixos,lib: move environment generation related copy-paste to libJan Malakhovski2015-09-18
| |/ / /
* | | | Merge pull request #9927 from oxij/nixos-discoverabilityArseniy Seroka2015-09-19
|\ \ \ \ | | | | | | | | | | nixos: rename some outputs for better discoverability in /nix/store
| * | | | nixos: rename some outputs for better discoverability in /nix/storeJan Malakhovski2015-09-18
| |/ / /
* / / / nixos: add xfs support to profiles/minimalJan Malakhovski2015-09-18
|/ / /
* | | Merge pull request #9317 from dfoxfranke/oidentd-ipv6lethalman2015-09-18
|\ \ \ | |/ / |/| | oidentd: listen on IPv6
| * | oidentd: listen on IPv6Daniel Fox Franke2015-08-30
| | |
* | | tests/virtualbox: Add systemd-detect-virt subtest.aszlig2015-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Addresses #9876 in the way that we want to make sure that VirtualBox 5.x is going to be properly detected. Right now the result is "kvm", so the subtest fails as expected with: error: systemd-detect-virt returned "kvm" instead of "oracle" at (eval 14) line 414, <__ANONIO__> line 92. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | gdb: Look for debug info in /run/current-system/sw/lib/debugEelco Dolstra2015-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous default was $out/lib/debug, which wasn't very useful. This ensures that you can do environment.systemPackages = [ pkgs.hello.debug ]; to install debug info.
* | | nixos/virtualbox-image: Use 32MB of video memory.aszlig2015-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Booting the demo/installer image won't work if the video memory is too low. It boots into KDE, shows the background image and doesn't do anything, according to @domenkozar. Thanks to @domenkozar for reporting and testing this with 32MB. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | nixos/virtualbox-image: Enable PAE on 32bit.aszlig2015-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pkgs/os-specific/linux/kernel/common-config.nix defines HIGHMEM64G on line 441 for 32bit systems, which implies PAE. We now creating the OVA with PAE support enabled, which fixes bootup of the image if people are just importing it without setting PAE explicitly. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | tests/virtualbox: Put name in log descriptions.aszlig2015-09-17
| | | | | | | | | | | | | | | | | | | | | Makes it easier to debug and find out for which machine a certain log socket has been started or stopped. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | tests/virtualbox: Use antiquotes for log sockets.aszlig2015-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We're simply using antiquotation, since it's been a while since these got introduced (in Nix 1.7). So we can use them because it makes the code much more readable. As usual, I made sure that I didn't accidentally change something in functionality: $ nix-instantiate nixos/tests/virtualbox.nix ... /nix/store/cldxyrxqvwpqm02cd3lvknnmj4qmblyn-vm-test-run-virtualbox.drv $ git stash pop ... $ nix-instantiate nixos/tests/virtualbox.nix ... /nix/store/cldxyrxqvwpqm02cd3lvknnmj4qmblyn-vm-test-run-virtualbox.drv $ Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | tests/virtualbox: Fix long line in guestAdditions.aszlig2015-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is essentially not only "wrapping" the line but refactoring into a shorter name which is used in two places. And yes, I know I'm very pedantic if it comes to whitespaces and line lengths, but I made sure this doesn't change any functionality: $ nix-instantiate nixos/tests/virtualbox.nix ... /nix/store/cldxyrxqvwpqm02cd3lvknnmj4qmblyn-vm-test-run-virtualbox.drv $ git stash pop ... $ nix-instantiate nixos/tests/virtualbox.nix ... /nix/store/cldxyrxqvwpqm02cd3lvknnmj4qmblyn-vm-test-run-virtualbox.drv $ Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | tests/virtualbox: Allow to call it with debug attr.aszlig2015-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of manually setting debug to true or false, this should make it possible to now run the test like this: nix-build nixos/tests/virtualbox.nix --arg debug true Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | xf86_video_nouveau: deprecate this aliasVladimír Čunát2015-09-17
| | |
* | | nixos-container: Add bash completion for "nixos-container" commandMatthias Beyer2015-09-16
| | |
* | | Merge pull request #9880 from mbbx6spp/add-package-option-elasticsearch-moduleDomen Kožar2015-09-16
|\ \ \ | | | | | | | | elasticsearch module: add package option
| * | | Add package option to elasticsearch NixOS moduleSusan Potter2015-09-15
| | | |
* | | | mlmmj: Fix invalid mailman entry and update transports and virtual dbs on ↵Florian Baumann2015-09-16
| | | | | | | | | | | | | | | | activation