a
This commit is contained in:
commit
2448f2fc1b
9 changed files with 285 additions and 0 deletions
19
cfg/winter/kernel.nix
Normal file
19
cfg/winter/kernel.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ config, pkgs, ...}: {
|
||||
powerManagement.cpuFreqGovernor = "performance";
|
||||
boot = {
|
||||
loader = {
|
||||
systemd-boot.enable = true;
|
||||
efi.canTouchEfiVariables = true;
|
||||
};
|
||||
blacklistedKernelModules = [
|
||||
"uvcvideo"
|
||||
];
|
||||
kernelParams = [
|
||||
"amdgpu.gpu_recovery=1"
|
||||
"amdgpu.si_support=1"
|
||||
"radeon.si_support=0"
|
||||
"intel_pstate=passive"
|
||||
];
|
||||
kernelPackages = pkgs.linuxPackages_lqx;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue