diff --git a/flake.nix b/flake.nix index 4802196..f2bca31 100644 --- a/flake.nix +++ b/flake.nix @@ -527,6 +527,7 @@ common password-manager graphical-workstation + plasma6 music-production laptop gaming diff --git a/modules/nixos/default.nix b/modules/nixos/default.nix index 0b39ebc..4f701e6 100644 --- a/modules/nixos/default.nix +++ b/modules/nixos/default.nix @@ -642,6 +642,7 @@ then { graphics = { enable = true; + enable32Bit = true; /* driSupport32Bit = true; driSupport = true; diff --git a/nixos/thablet.nix b/nixos/thablet.nix index 2d454a7..56fb004 100644 --- a/nixos/thablet.nix +++ b/nixos/thablet.nix @@ -1,4 +1,5 @@ { + pkgs, lib, config, ... @@ -41,7 +42,18 @@ boot.kernelModules = ["kvm-intel" "acpi_call"]; boot.extraModulePackages = with config.boot.kernelPackages; [acpi_call]; - hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + hardware = { + cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + graphics = { + enable = true; + enable32Bit = true; + extraPackages = with pkgs; [ + intel-media-driver + intel-ocl + intel-vaapi-driver + ]; + }; + }; hardware.bluetooth = { enable = true;