2012-02-25 20:10:53 +00:00
|
|
|
# Module for VirtualBox guests.
|
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-09-07 13:28:17 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2010-09-07 13:28:17 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2015-08-13 10:17:32 +00:00
|
|
|
cfg = config.virtualisation.virtualbox.guest;
|
2011-09-19 13:20:09 +00:00
|
|
|
kernel = config.boot.kernelPackages;
|
2010-09-07 13:28:17 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2016-12-04 21:06:14 +00:00
|
|
|
options.virtualisation.virtualbox.guest = {
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
description = "Whether to enable the VirtualBox service and other guest additions.";
|
|
|
|
};
|
|
|
|
|
|
|
|
x11 = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
|
|
|
description = "Whether to enable x11 graphics";
|
|
|
|
};
|
2010-09-07 13:28:17 +00:00
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2010-09-07 13:28:17 +00:00
|
|
|
###### implementation
|
|
|
|
|
2016-12-04 21:06:14 +00:00
|
|
|
config = mkIf cfg.enable (mkMerge [{
|
|
|
|
assertions = [{
|
2014-05-05 18:58:51 +00:00
|
|
|
assertion = pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64;
|
2018-08-20 19:11:29 +00:00
|
|
|
message = "Virtualbox not currently supported on ${pkgs.stdenv.hostPlatform.system}";
|
2016-12-04 21:06:14 +00:00
|
|
|
}];
|
2010-09-07 13:28:17 +00:00
|
|
|
|
2012-02-25 20:10:53 +00:00
|
|
|
environment.systemPackages = [ kernel.virtualboxGuestAdditions ];
|
2011-08-09 19:53:01 +00:00
|
|
|
|
2011-09-19 13:20:09 +00:00
|
|
|
boot.extraModulePackages = [ kernel.virtualboxGuestAdditions ];
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2015-08-19 22:29:20 +00:00
|
|
|
boot.supportedFilesystems = [ "vboxsf" ];
|
|
|
|
boot.initrd.supportedFilesystems = [ "vboxsf" ];
|
2014-02-05 17:38:03 +00:00
|
|
|
|
2018-06-29 23:58:35 +00:00
|
|
|
users.groups.vboxsf.gid = config.ids.gids.vboxsf;
|
2012-12-31 21:00:02 +00:00
|
|
|
|
2013-10-09 11:30:57 +00:00
|
|
|
systemd.services.virtualbox =
|
2012-08-23 14:25:27 +00:00
|
|
|
{ description = "VirtualBox Guest Services";
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2012-08-06 18:59:58 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
requires = [ "dev-vboxguest.device" ];
|
|
|
|
after = [ "dev-vboxguest.device" ];
|
2010-09-07 13:28:17 +00:00
|
|
|
|
2013-10-09 11:30:57 +00:00
|
|
|
unitConfig.ConditionVirtualization = "oracle";
|
|
|
|
|
2015-08-04 01:03:24 +00:00
|
|
|
serviceConfig.ExecStart = "@${kernel.virtualboxGuestAdditions}/bin/VBoxService VBoxService --foreground";
|
2010-09-07 13:28:17 +00:00
|
|
|
};
|
|
|
|
|
2016-12-04 21:06:14 +00:00
|
|
|
services.udev.extraRules =
|
|
|
|
''
|
|
|
|
# /dev/vboxuser is necessary for VBoxClient to work. Maybe we
|
|
|
|
# should restrict this to logged-in users.
|
|
|
|
KERNEL=="vboxuser", OWNER="root", GROUP="root", MODE="0666"
|
|
|
|
|
|
|
|
# Allow systemd dependencies on vboxguest.
|
|
|
|
SUBSYSTEM=="misc", KERNEL=="vboxguest", TAG+="systemd"
|
|
|
|
'';
|
|
|
|
} (mkIf cfg.x11 {
|
2016-07-19 11:55:44 +00:00
|
|
|
services.xserver.videoDrivers = mkOverride 50 [ "virtualbox" "modesetting" ];
|
2012-03-16 01:03:09 +00:00
|
|
|
|
|
|
|
services.xserver.config =
|
|
|
|
''
|
|
|
|
Section "InputDevice"
|
|
|
|
Identifier "VBoxMouse"
|
|
|
|
Driver "vboxmouse"
|
|
|
|
EndSection
|
|
|
|
'';
|
|
|
|
|
|
|
|
services.xserver.serverLayoutSection =
|
|
|
|
''
|
|
|
|
InputDevice "VBoxMouse"
|
|
|
|
'';
|
2012-08-06 18:59:58 +00:00
|
|
|
|
2012-03-16 01:29:51 +00:00
|
|
|
services.xserver.displayManager.sessionCommands =
|
|
|
|
''
|
2016-04-13 12:53:51 +00:00
|
|
|
PATH=${makeBinPath [ pkgs.gnugrep pkgs.which pkgs.xorg.xorgserver.out ]}:$PATH \
|
2012-03-16 01:29:51 +00:00
|
|
|
${kernel.virtualboxGuestAdditions}/bin/VBoxClient-all
|
|
|
|
'';
|
2016-12-04 21:06:14 +00:00
|
|
|
})]);
|
2010-09-07 13:28:17 +00:00
|
|
|
|
|
|
|
}
|