Format kernelModules array
Reformatted the boot.kernelModules array for better readability. This change enhances the clarity of the list and follows more consistent coding practices across the configuration file.
This commit is contained in:
parent
bad907bf04
commit
4292f4c334
1 changed files with 4 additions and 1 deletions
|
@ -21,7 +21,10 @@
|
|||
];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
|
||||
boot.kernelModules = [ "kvm-intel" "amdgpu" ];
|
||||
boot.kernelModules = [
|
||||
"kvm-intel"
|
||||
"amdgpu"
|
||||
];
|
||||
boot.kernelParams = [
|
||||
"lockdown=confidentiality"
|
||||
"intel_iommu=on"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue