13 lines
298 B
Nix
13 lines
298 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# workaround to disable CPU wining
|
|
# current CPU has 9 idle cstates.
|
|
boot.kernelParams = [ "intel_idle.max_cstate=9" ];
|
|
|
|
# Workaround for nm-pptp to enforce module load
|
|
boot.kernelModules = [
|
|
"nf_conntrack_proto_gre"
|
|
"nf_conntrack_pptp"
|
|
];
|
|
}
|