summaryrefslogtreecommitdiff
path: root/modules/hardware/default.nix
blob: cb124fbcc21ba9d8cbd517d0f41b48af79e9b0cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:
{
  imports = [
    ./bluetooth.nix
    ./graphics.nix
    ./nvidia.nix
  ];

  hardware = {
    enableRedistributableFirmware = true;
    enableAllFirmware = true;
  };
}