summary refs log tree commit diff
path: root/nixos
Commit message (Collapse)AuthorAge
* networking module: add extraResolvconfConf optionThomas Strobel2015-09-26
|
* 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
* | | tests/virtualbox: Give test machines more memory.aszlig2015-09-16
| | | | | | | | | | | | | | | | | | | | | | | | Sometimes there are random kernel panics do to the lack of memory in the qemu guests, but as we're setting the VirtualBox memory size relatively low, 1024 MB should be enough for the qemu guests. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | tests/virtualbox: Start systemwide DBus in guests.aszlig2015-09-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We want to check whether DBus functionality is working, so let's make sure it is running in our mini-initrd. DBus unfortunately requires to have users properly set up and another configuration file other than in ${dbus.daemon}/etc/dbus-1/system.conf, so we do provide that as well. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | nixos tests: add gdm testLuca Bruno2015-09-15
| | |
* | | "Parallel Tools" -> Parallels ToolsTobias Geerinckx-Rice2015-09-15
| | |
* | | nixos: correct "Kubernets" -> "Kubernetes"Tobias Geerinckx-Rice2015-09-15
|/ /
* | Merge pull request #9819 from gebner/xdotool-3-20150503-1Arseniy Seroka2015-09-14
|\ \ | | | | | | xdotool: 2.20110530.1 -> 3.20150503.1
| * | xdotool: 2.20110530.1 -> 3.20150503.1Gabriel Ebner2015-09-12
| | |
* | | nixos gdm: use AutomaticLogin if delay is zero. Closes #9843Luca Bruno2015-09-14
| | |
* | | nixos gdm: add debug optionLuca Bruno2015-09-14
| | |
* | | nixos/lxd: Add serviceWilliam A. Kennington III2015-09-13
| | |
* | | nixos: samba module: fix typo & clarifyTobias Geerinckx-Rice2015-09-14
| | |
* | | Merge pull request #9825 from ericsagnes/connman-confMatej Cotman2015-09-13
|\ \ \ | | | | | | | | connman: improved configuration
| * | | connman: improved configuration supportEric Sagnes2015-09-12
| |/ /
* | | nixos i18n: add option to set console keymap from xkbGeoffrey Reedy2015-09-13
| | | | | | | | | | | | Close #9675. The expression was refactored heavily by vcunat.
* | | kmod-debian-aliases: init at 21-1Mathnerd3142015-09-13
|/ /