6 lines
153 B
Nix
6 lines
153 B
Nix
{ lib
|
|
, ...
|
|
}: {
|
|
boot.supportedFilesystems = lib.mkForce [ "vfat" "btrfs" "ext4" ];
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
|
}
|