summaryrefslogtreecommitdiff
path: root/nixos/hardware/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/hardware/default.nix')
-rw-r--r--nixos/hardware/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/nixos/hardware/default.nix b/nixos/hardware/default.nix
index 0e8dc15..0405ff4 100644
--- a/nixos/hardware/default.nix
+++ b/nixos/hardware/default.nix
@@ -1,7 +1,6 @@
-{ nixos-hardware, ... }:
-
-{
- imports = [ # Include the results of the hardware scan.
+{nixos-hardware, ...}: {
+ imports = [
+ # Include the results of the hardware scan.
./hardware-configuration.nix
# Community-curated hardware configuration
@@ -22,5 +21,5 @@
};
# faulty Intel CPU
- boot.kernelParams = [ "i915.dc_enable=0" "intel_idle.max_cstate=1" ];
+ boot.kernelParams = ["i915.dc_enable=0" "intel_idle.max_cstate=1"];
}