From 4292f4c334b3c3dcbde14bed89669a1bae99f5c0 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Mon, 25 Nov 2024 12:31:48 +0100 Subject: [PATCH] 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. --- systems/x86_64-linux/x1/hardware-configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/systems/x86_64-linux/x1/hardware-configuration.nix b/systems/x86_64-linux/x1/hardware-configuration.nix index b461eaa..910dfd6 100644 --- a/systems/x86_64-linux/x1/hardware-configuration.nix +++ b/systems/x86_64-linux/x1/hardware-configuration.nix @@ -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"