nvme ssd power stage bug? switched to 6.12 on nixarawrui <3

This commit is contained in:
foxora 2026-03-07 19:12:11 +00:00
parent ff97832d9f
commit be96d1dbf7

View file

@ -23,8 +23,8 @@
# kernelPackages = upkgs.cachyosKernels.linuxPackages-cachyos-latest-lto-x86_64-v4;
# TODO: idk make this a toggle or smth idfk
# kernelPackages = upkgs.linuxPackages_zen;
# FIX: it said my disk was full
kernelPackages = upkgs.linuxPackages_latest;
# FIX: kernel bug
kernelPackages = upkgs.linuxPackages_6_12;
kernelModules = ["v4l2loopback"];
# force kernel to use dGPU
kernelParams = [
@ -32,7 +32,10 @@
"video=PCI:0000:03:00.0:e"
"initcall_blacklist=simpledrm_platform_driver_init"
"fbcon=map:0"
"pci=assign-busses"
# fixes nvme drive not waking up
# "nvme_core.default_ps_max_latency_us=0"
# "pcie_port_pm=off"
];
extraModulePackages = with kernelPackages; [v4l2loopback];