1
0
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:
Donovan Glover 2023-06-21 03:41:13 -04:00
parent b05eecbdbf
commit ba686839ec
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
4 changed files with 0 additions and 13 deletions

View File

@ -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";
};

View File

@ -24,7 +24,6 @@
./timezone.nix
./user.nix
./virtualization.nix
./vmware.nix
./zram.nix
];
}

View File

@ -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"
'';
};
}

View File

@ -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 = [ ];