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

{
  imports = [ ../../. ];

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

  hardware.opengl.driSupport32Bit = true;

  services.xserver = {
    libinput.enable = lib.mkDefault true;
    # TODO: we should not enable unfree drivers
    videoDrivers = [ "nvidia" ];
  };
}