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

This commit is contained in:
Jordan Holt 2024-06-15 22:10:36 +01:00
parent 6f66c6a30d
commit baac9ac61f
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520
2 changed files with 2 additions and 15 deletions

View File

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

View File

@ -8,12 +8,6 @@
boot = {
initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
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 ];
};
@ -26,16 +20,11 @@
opengl = {
enable = true;
extraPackages = with pkgs; [
intel-vaapi-driver
intel-media-driver
libvdpau-va-gl
];
driSupport = true;
driSupport32Bit = true;
};
};
environment.variables = {
VDPAU_DRIVER = "va_gl";
};
}