Remove GPU patch from hypnos
Some checks failed
Check flake / build-amd64-linux (push) Has been cancelled

This commit is contained in:
2024-06-15 22:10:36 +01:00
parent 6f66c6a30d
commit baac9ac61f
2 changed files with 2 additions and 15 deletions

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: { config, lib, ... }:
{ {
imports = [ imports = [
@ -19,8 +19,6 @@
browsers = { browsers = {
firefox.enable = true; firefox.enable = true;
}; };
gnome.enable = lib.mkForce false;
kde.enable = true;
media.recording = { media.recording = {
audio.enable = true; audio.enable = true;
}; };

View File

@ -8,12 +8,6 @@
boot = { boot = {
initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
kernelModules = [ "applesmc" "kvm-intel" "wl" ]; kernelModules = [ "applesmc" "kvm-intel" "wl" ];
kernelPatches = [
{
name = "spoof-mac-os-x";
patch = ./0001-Add-apple_set_os-EFI-boot-service.patch;
}
];
extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ]; extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
}; };
@ -26,16 +20,11 @@
opengl = { opengl = {
enable = true; enable = true;
extraPackages = with pkgs; [ extraPackages = with pkgs; [
intel-vaapi-driver
intel-media-driver
libvdpau-va-gl libvdpau-va-gl
]; ];
driSupport = true; driSupport = true;
driSupport32Bit = true;
}; };
}; };
environment.variables = {
VDPAU_DRIVER = "va_gl";
};
} }