summaryrefslogtreecommitdiff
path: root/modules/pc/hardware/usb.nix
blob: f697761ac237ade63fc4b60a1f43e42ccafc9180 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ pkgs, ... }:
{
  environment.systemPackages = with pkgs; [
    usbutils
    lm_sensors
    pciutils
  ];

  boot.kernelParams = [ "usbcore.autosuspend=-1" ];
}