move things around

This commit is contained in:
LavaDesu 2021-05-26 21:05:59 +07:00
parent 63b9b81ebe
commit c9f0f903a3
Signed by: cilly
GPG key ID: 6500251E087653C9
26 changed files with 9 additions and 8 deletions

View file

@ -1,34 +0,0 @@
{ config, pkgs, ...}: {
powerManagement.cpuFreqGovernor = "performance";
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
supportedFilesystems = ["bcachefs"];
blacklistedKernelModules = [
"uvcvideo"
];
initrd = {
includeDefaultModules = false;
kernelModules = [ "i915" ];
};
kernel.sysctl = {
"kernel.sysrq" = 1;
};
kernelParams = [
"amdgpu.gpu_recovery=1"
"amdgpu.si_support=1"
"radeon.si_support=0"
"intel_pstate=passive"
"msr.allow_writes=on"
];
kernelPackages = pkgs.lib.mkForce pkgs.linux-lava;
};
zramSwap.enable = true;
}