From de7d77fc00877a444c684eefbac7e82c5f4c7f8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Mon, 27 Dec 2021 19:39:03 +0000 Subject: [PATCH] remove unused --- nixos/boxes/i32emulation.nix | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 nixos/boxes/i32emulation.nix 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; -}