mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 12:07:47 +03:00
Merge pull request #5302 from ambrop72/virtualbox-network-interface
virtualbox: Unbreak the nixos module.
This commit is contained in:
commit
c96df1fece
@ -16,7 +16,7 @@ in
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf config.services.virtualboxHost.enable {
|
||||
config = mkIf config.services.virtualboxHost.enable (mkMerge [{
|
||||
boot.kernelModules = [ "vboxdrv" "vboxnetadp" "vboxnetflt" ];
|
||||
boot.extraModulePackages = [ virtualbox ];
|
||||
environment.systemPackages = [ virtualbox ];
|
||||
@ -51,7 +51,7 @@ in
|
||||
'';
|
||||
|
||||
# Since we lack the right setuid binaries, set up a host-only network by default.
|
||||
} // mkIf config.services.virtualboxHost.addNetworkInterface {
|
||||
} (mkIf config.services.virtualboxHost.addNetworkInterface {
|
||||
systemd.services."vboxnet0" =
|
||||
{ description = "VirtualBox vboxnet0 Interface";
|
||||
requires = [ "dev-vboxnetctl.device" ];
|
||||
@ -73,5 +73,5 @@ in
|
||||
};
|
||||
|
||||
networking.interfaces.vboxnet0.ip4 = [ { address = "192.168.56.1"; prefixLength = 24; } ];
|
||||
};
|
||||
})]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user