remove hp omen module

This commit is contained in:
Reid 2026-04-16 01:34:27 -07:00
parent bb229a4aef
commit 527378ad95
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
2 changed files with 5 additions and 20 deletions

View file

@ -9,8 +9,6 @@
inputs.hardware.nixosModules.common-pc inputs.hardware.nixosModules.common-pc
(modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
./omen-30l-gt13-1xxx.nix
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ];
@ -21,6 +19,11 @@
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
# radv > amdvlk
environment.variables.AMD_VULKAN_ICD = "RADV";
environment.systemPackages = with pkgs; [ amdgpu_top ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/5da6bab0-856a-4e65-8ff6-5b70fe3764b8"; { device = "/dev/disk/by-uuid/5da6bab0-856a-4e65-8ff6-5b70fe3764b8";
fsType = "btrfs"; fsType = "btrfs";

View file

@ -1,18 +0,0 @@
{ pkgs, lib, ... }:
{
# support power features such as suspend to ram
powerManagement.enable = true;
environment.variables = {
AMD_VULKAN_ICD = "RADV";
LIBVA_DRIVER_NAME= "radeonsi";
VDPAU_DRIVER = "radeonsi";
};
environment.systemPackages = with pkgs; [ amdgpu_top ];
# fix audio issues: https://forums.linuxmint.com/viewtopic.php?t=445461
boot.extraModprobeConfig = ''
options snd_hda_intel model=generic
'';
}