diff --git a/nixos/boxes/i32emulation.nix b/nixos/boxes/i32emulation.nix deleted file mode 100644 index e509ad3b..00000000 --- a/nixos/boxes/i32emulation.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ config, pkgs, ... }: -{ - nixpkgs.config.packageOverrides = pkgs: { - linux_latest_hardened = pkgs.linux_latest_hardened.override { - extraConfig = '' - IA32_EMULATION y - KVM m - KVM_INTEL m - ''; - features.ia32Emulation = true; - enableParallelBuilding = true; - }; - }; - - hardware.opengl.extraPackages32 = [ pkgs.linuxPackages.nvidia_x11.lib32 pkgs.pkgsi686Linux.libva ]; - hardware.opengl.driSupport32Bit = true; - hardware.pulseaudio.support32Bit = true; -}