From c0a4f309d694593dbd58db4a0ec2f885f950602a Mon Sep 17 00:00:00 2001 From: Love Billenius Date: Thu, 26 Mar 2026 23:19:28 +0100 Subject: [PATCH] remove comment --- hosts/kronos/hardware-configuration.nix | 26 +++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/hosts/kronos/hardware-configuration.nix b/hosts/kronos/hardware-configuration.nix index 1983dbb..11d50cb 100644 --- a/hosts/kronos/hardware-configuration.nix +++ b/hosts/kronos/hardware-configuration.nix @@ -1,14 +1,24 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ -# and may be overwritten by future invocations. Please make changes -# to /etc/nixos/configuration.nix instead. -{ config, lib, pkgs, modulesPath, ... }: +{ + config, + lib, + modulesPath, + ... +}: { - imports = - [ (modulesPath + "/installer/scan/not-detected.nix") - ]; + imports = [ + (modulesPath + "/installer/scan/not-detected.nix") + ]; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sr_mod" ]; + boot.initrd.availableKernelModules = [ + "nvme" + "xhci_pci" + "ahci" + "usbhid" + "usb_storage" + "sd_mod" + "sr_mod" + ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ];