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
|
@ -21,7 +21,10 @@
|
||||||
];
|
];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
|
boot.kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
|
||||||
boot.kernelModules = [ "kvm-intel" "amdgpu" ];
|
boot.kernelModules = [
|
||||||
|
"kvm-intel"
|
||||||
|
"amdgpu"
|
||||||
|
];
|
||||||
boot.kernelParams = [
|
boot.kernelParams = [
|
||||||
"lockdown=confidentiality"
|
"lockdown=confidentiality"
|
||||||
"intel_iommu=on"
|
"intel_iommu=on"
|
||||||
|
|
Loading…
Reference in a new issue