summary refs log tree commit diff
path: root/nixos/modules/virtualisation/virtualbox-guest.nix
Commit message (Collapse)AuthorAge
* nixos/virtualbox-guest: add vmware driverPascal Bach2020-06-17
| | | | | | | | VMSGVA is recommended by virtualbox for Linux clients. Compared to VBoxVGA and VBoxSVGA it also supports 3D acceleration. Adding the driver makes nixos work with all three supported graphics card types.
* reewide: Purge all uses `stdenv.system` and top-level `system`John Ericson2018-08-30
| | | | It is deprecated and will be removed after 18.09.
* nixos/modules: users.(extraUsers|extraGroup->users|group)Florian Klink2018-06-30
|
* virtualbox guest module: make x11 optionalJaka Hudoklin2016-12-04
|
* virtualbox: fix virtualbox guest additions (#16964)Matthew Justin Bauer2016-07-19
|
* Explicitly specify the subsystem for /dev/vboxguestEelco Dolstra2016-06-03
| | | | | | | | Otherwise systemd gets confused and forgets about device units after reloading. https://github.com/NixOS/nixops/issues/391 https://github.com/systemd/systemd/issues/3423
* replace makeSearchPath tree-wise to take care of possible multiple outputsNikolay Amiantov2016-04-13
|
* nixos/virtualbox-guest: Reference correct output of xorgserverTuomas Tynkkynen2015-10-28
|
* 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>
* nixos/vbox: Move all options to virtualisation.*.aszlig2015-08-13
| | | | | | | | | | | | Commit 687caeb renamed services.virtualboxHost to programs.virtualbox, but according to the discussion on the commit, it's probably a better to put it into virtualisation.virtualbox instead. The discussion can be found here: https://github.com/NixOS/nixpkgs/commit/687caeb#commitcomment-12664978 Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* vbox-guest: Remove all references to sbin/.aszlig2015-08-04
| | | | | | | | | | | | | | Using $storepath/sbin is deprecated according to commit 98cedb3, so let's avoid putting anything in .../sbin for the guest additions. This is a continuation of the initial commit done by @ctheune at 1fb1360, which unfortunately broke VM tests and only changed the path of the mount.vboxsf helper. With this commit, the VM test is fixed and I've also verified on my machine that it is indeed working again. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* nixos: Rename virtualbox to virtualboxGuest.aszlig2014-11-27
| | | | | | | | | Especially new users could be confused by this, so we're now marking services.virtualbox.enable as obsolete and defaulting to services.virtualboxGuest.enable instead. I believe this now makes it clear, that this option is for guest additions only. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* Get all lib functions from lib, not pkgs.lib, in modulesShea Levy2014-07-02
|
* Rename hardware.opengl.videoDrivers back to services.xserver.videoDriversEelco Dolstra2014-04-29
| | | | | | | | Fixes #2379. The new name was a misnomer because the values really are X11 video drivers (e.g. ‘cirrus’ or ‘nvidia’), not OpenGL implementations. That it's also used to set an OpenGL implementation for kmscon is just confusing overloading.
* Rewrite ‘with pkgs.lib’ -> ‘with lib’Eelco Dolstra2014-04-14
| | | | | | | | Using pkgs.lib on the spine of module evaluation is problematic because the pkgs argument depends on the result of module evaluation. To prevent an infinite recursion, pkgs and some of the modules are evaluated twice, which is inefficient. Using ‘with lib’ prevents this problem.
* sloppy sloppy SheaShea Levy2014-03-29
|
* D'ohShea Levy2014-03-29
|
* Add "vboxsf" to the kernel modules for VirtualBox Guest Additions 4.3.6Moritz Maxeiner2014-02-05
|
* Follow renaming of services.xserver.videoDrivers to ↵Moritz Maxeiner2014-02-02
| | | | services.mesa.videoDrivers for VirtualBox Guest
* Don't enable acpid for VirtualBox guestsEelco Dolstra2013-10-17
| | | | | It's no longer needed for ACPI shutdown, since logind handles this now.
* Move all of NixOS to nixos/ in preparation of the repository mergeEelco Dolstra2013-10-10