Add vmware to system, simplify homedir logic, add more Hidden
This commit is contained in:
parent
f75eec5484
commit
04560dfbc5
10 changed files with 37 additions and 17 deletions
13
modules/system/services/general/vmware/default.nix
Normal file
13
modules/system/services/general/vmware/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
config = lib.mkIf config.virtualisation.vmware.host.enable {
|
||||
virtualisation.vmware.host = {
|
||||
extraConfig = ''
|
||||
mks.gl.allowUnsupportedDrivers = "TRUE"
|
||||
mks.vk.allowUnsupportedDevices = "TRUE"
|
||||
'';
|
||||
};
|
||||
|
||||
nixpkgs.allowUnfreePackages = [ "vmware-workstation" ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue