diff options
| author | Mathias Magnusson <mathias@magnusson.space> | 2025-10-19 17:45:49 +0200 |
|---|---|---|
| committer | Mathias Magnusson <mathias@magnusson.space> | 2025-10-19 17:46:34 +0200 |
| commit | 671e66917b09c56ca9e717b300b874ed71b189ae (patch) | |
| tree | c81a03308a7fa7828d49fc29d49f76bfec2e86ea /hardware-configuration.nix | |
| parent | 421733993cc9f0ce1ec4306cd0659fb5fe655846 (diff) | |
| download | oden-671e66917b09c56ca9e717b300b874ed71b189ae.tar.gz | |
nixfmt
Diffstat (limited to 'hardware-configuration.nix')
| -rw-r--r-- | hardware-configuration.nix | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix index df42bc0..e7fe300 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -1,14 +1,25 @@ # 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, ... }: - { - imports = - [ (modulesPath + "/installer/scan/not-detected.nix") - ]; + config, + lib, + modulesPath, + ... +}: +{ + imports = [ + (modulesPath + "/installer/scan/not-detected.nix") + ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ]; + boot.initrd.availableKernelModules = [ + "xhci_pci" + "ahci" + "nvme" + "usb_storage" + "usbhid" + "sd_mod" + ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; |
