Fixed emacs lsp issues; general nix cleanup

This commit is contained in:
Random936
2024-09-22 18:17:10 -07:00
parent 6403840eb5
commit cc11a81c03
5 changed files with 9 additions and 9 deletions

View File

@@ -10,9 +10,11 @@
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "vmd" "nvme" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
# Added kernel drivers for HP Omen Laptop
boot.kernelModules = [ "kvm-intel" "hp-wmi" ];
boot.extraModprobeConfig = ''
options snd-hda-intel model=dell-headset-multi
'';