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
password-manager
graphical-workstation
plasma6
music-production
laptop
gaming

View file

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

View file

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