summary refs log tree commit diff
path: root/nixos/modules/programs/virtualbox.nix
blob: a00b1e5f64d0eb2ba251742c37534a4424627214 (plain) (blame)
1
2
3
4
5
6
7
8
let
  msg = "Importing <nixpkgs/nixos/modules/programs/virtualbox.nix> is "
      + "deprecated, please use `services.virtualboxHost.enable = true' "
      + "instead.";
in {
  config.warnings = [ msg ];
  config.services.virtualboxHost.enable = true;
}