Thablet graphics

This commit is contained in:
Daniel Flanagan 2024-12-03 13:28:57 -06:00
parent 88e55cbd3a
commit 6ff76be7e4
3 changed files with 15 additions and 1 deletions

View file

@ -527,6 +527,7 @@
common common
password-manager password-manager
graphical-workstation graphical-workstation
plasma6
music-production music-production
laptop laptop
gaming gaming

View file

@ -642,6 +642,7 @@
then { then {
graphics = { graphics = {
enable = true; enable = true;
enable32Bit = true;
/* /*
driSupport32Bit = true; driSupport32Bit = true;
driSupport = true; driSupport = true;

View file

@ -1,4 +1,5 @@
{ {
pkgs,
lib, lib,
config, config,
... ...
@ -41,7 +42,18 @@
boot.kernelModules = ["kvm-intel" "acpi_call"]; boot.kernelModules = ["kvm-intel" "acpi_call"];
boot.extraModulePackages = with config.boot.kernelPackages; [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 = { hardware.bluetooth = {
enable = true; enable = true;