From c578bf00a12b0c55665df731e8063c3d9f1a0907 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Thu, 26 Mar 2026 17:50:19 -0500 Subject: [PATCH] formatting --- modules/hosts/john-p14s/hardware.nix | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/modules/hosts/john-p14s/hardware.nix b/modules/hosts/john-p14s/hardware.nix index 789a91c..4cca7b0 100644 --- a/modules/hosts/john-p14s/hardware.nix +++ b/modules/hosts/john-p14s/hardware.nix @@ -4,12 +4,25 @@ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "usbhid" "sd_mod" ]; - boot.initrd.kernelModules = [ "amdgpu" ]; - boot.kernelModules = [ "kvm-amd" ]; - boot.extraModulePackages = [ ]; + boot = { + loader = { + systemd-boot.enable = true; + canTouchEfiVariables = true; + }; + initrd = { + availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "usbhid" "sd_mod" ]; + kernelModules = [ "amdgpu" ]; + }; + kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + }; + + # boot.loader.systemd-boot.enable = true; + # boot.loader.efi.canTouchEfiVariables = true; + # boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "usbhid" "sd_mod" ]; + # boot.initrd.kernelModules = [ "amdgpu" ]; + # boot.kernelModules = [ "kvm-amd" ]; + # boot.extraModulePackages = [ ]; fileSystems."/" = { device = "/dev/disk/by-uuid/fbc7d8bc-080b-4554-a2b2-5f92d059ce07";