mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-21 19:52:52 +00:00
add kernel modules
This commit is contained in:
parent
5f35f2f7b7
commit
0ede7b7899
1 changed files with 7 additions and 0 deletions
|
@ -25,6 +25,13 @@
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||||
|
|
||||||
|
# Kernel modules
|
||||||
|
boot.kernelModules = [ "kvm-intel" "snd-hda-intel" "i8042" ];
|
||||||
|
boot.extraModprobeConfig = ''
|
||||||
|
options snd-hda-intel model=alc255-acer,dell-headset-multi
|
||||||
|
options i8042 nopnp=1
|
||||||
|
'';
|
||||||
|
|
||||||
# Setup keyfile
|
# Setup keyfile
|
||||||
boot.initrd.secrets = {
|
boot.initrd.secrets = {
|
||||||
"/crypto_keyfile.bin" = null;
|
"/crypto_keyfile.bin" = null;
|
||||||
|
|
Loading…
Reference in a new issue