mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-09 23:49:43 +00:00
14 lines
387 B
Nix
14 lines
387 B
Nix
_: {
|
|
boot = {
|
|
kernelModules = ["kvm-intel" "snd-hda-intel" "i8042" "nf_nat_ftp"];
|
|
extraModprobeConfig = ''
|
|
options snd-hda-intel model=alc255-acer,dell-headset-multi
|
|
options i8042 nopnp=1
|
|
'';
|
|
kernelParams = ["allow-discards"];
|
|
kernel.sysctl = {
|
|
"net.ipv4.conf.all.forwarding" = true;
|
|
"net.ipv4.conf.default.forwarding" = true;
|
|
};
|
|
};
|
|
}
|