summaryrefslogtreecommitdiffstats
path: root/apple/macbook-pro/11-5/default.nix
blob: b5c36a67f5dd03353b1f2a54695a2e481be7b9d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, pkgs, ... }:

{
  imports = [
    ../.
    ../../../common/pc/laptop/ssd
    <nixpkgs/nixos/modules/hardware/network/broadcom-43xx.nix>
  ];

  boot.loader.systemd-boot.enable = true;
  boot.loader.efi.canTouchEfiVariables = true;

  # Apparently this is currently only supported by ati_unfree drivers, not ati
  hardware.opengl.driSupport32Bit = false;

  services.xserver.videoDrivers = [ "ati" ];
}