mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 18:46:13 +01:00
10 lines
313 B
Nix
10 lines
313 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
||
|
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
||
|
boot.kernelModules = [ "kvm-amd" ];
|
||
|
boot.extraModulePackages = [ ];
|
||
|
|
||
|
powerManagement.cpuFreqGovernor = pkgs.lib.mkDefault "performance";
|
||
|
}
|