forked from extern/nix-config
meta: Remove vmware
Now that I have figured out how to get all the Windows applications I previously used working under Wine (including those that didn't work in the virtual machine after trying to manually install dependencies) there is no reason for me to use vmware. Using NixOS for Windows applications allows them to be used with systemd-nspawn containers, thus achieving things like isolation, private networks, impermanence, and more. All of this without having to maintain a separate operating system install.
This commit is contained in:
parent
b05eecbdbf
commit
ba686839ec
@ -7,7 +7,6 @@ let VARIABLES = import ../src/variables.nix; in {
|
||||
"image/jpeg" = "feh.desktop";
|
||||
"image/gif" = "org.qutebrowser.qutebrowser.desktop";
|
||||
"application/x-wine-extension-osz" = "osu-stable.desktop";
|
||||
"application/x-vmware-vm" = "vmware-workstation.desktop";
|
||||
"x-scheme-handler/http" = "${VARIABLES.defaultBrowser}.desktop";
|
||||
"x-scheme-handler/https" = "${VARIABLES.defaultBrowser}.desktop";
|
||||
};
|
||||
|
@ -24,7 +24,6 @@
|
||||
./timezone.nix
|
||||
./user.nix
|
||||
./virtualization.nix
|
||||
./vmware.nix
|
||||
./zram.nix
|
||||
];
|
||||
}
|
||||
|
@ -1,10 +0,0 @@
|
||||
{
|
||||
virtualisation.vmware.host = {
|
||||
enable = true;
|
||||
extraConfig = /* config */ ''
|
||||
# Enable 3D acceleration on the host
|
||||
mks.gl.allowUnsupportedDrivers = "TRUE"
|
||||
mks.vk.allowUnsupportedDevices = "TRUE"
|
||||
'';
|
||||
};
|
||||
}
|
@ -103,7 +103,6 @@ let VARIABLES = import ./variables.nix; in {
|
||||
nixpkgs.config.allowUnfreePredicate = pkg:
|
||||
builtins.elem (lib.getName pkg) [
|
||||
"osu-lazer-bin"
|
||||
"vmware-workstation"
|
||||
];
|
||||
|
||||
environment.defaultPackages = [ ];
|
||||
|
Loading…
Reference in New Issue
Block a user