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:
Harald Hoyer 2024-11-25 12:31:48 +01:00
parent bad907bf04
commit 4292f4c334

View file

@ -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"