diff options
Diffstat (limited to 'nixos')
| -rw-r--r-- | nixos/hardware/default.nix | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/nixos/hardware/default.nix b/nixos/hardware/default.nix index 8d932d0..c017942 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 @@ -21,5 +20,7 @@ }; sound.enable = true; }; -} + # these modules seem to be preventing hibernation + boot.blacklistedKernelModules = ["intel_hid" "nouveau"]; +} |
