nixos-hardware/apple/macbook-pro/10-1/default.nix

17 lines
335 B
Nix
Raw Normal View History

{ lib, pkgs, ... }:
2016-10-20 14:53:52 -04:00
{
imports = [ ../../. ];
2016-10-20 14:53:52 -04:00
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" ];
};
2016-10-20 14:53:52 -04:00
}