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

18 lines
315 B
Nix

{ lib, pkgs, ... }:
{
imports = [
../.
../../../common/pc/laptop/ssd
];
# TODO: reverse compat
hardware.opengl.driSupport32Bit = true;
services.xserver = {
# TODO: we should not enable unfree drivers
# when there is an alternative (i.e. nouveau)
videoDrivers = [ "nvidia" ];
};
}