1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-20 05:17:22 +02:00
nixos-hardware/apple/macbook-pro/10-1/default.nix

20 lines
400 B
Nix
Raw Normal View History

2024-06-21 15:44:42 +02:00
{ lib, ... }:
2016-10-20 20:53:52 +02:00
{
imports = [
../.
../../../common/pc/laptop/ssd
2024-06-21 23:26:44 +02:00
../../../common/gpu/24.05-compat.nix
../../../common/gpu/nvidia/kepler
];
2016-10-20 20:53:52 +02:00
# TODO: reverse compat
2024-06-21 15:44:42 +02:00
hardware.graphics.enable32Bit = lib.mkDefault true;
2016-10-20 20:53:52 +02:00
services.xserver = {
# TODO: we should not enable unfree drivers
# when there is an alternative (i.e. nouveau)
videoDrivers = [ "nvidia" ];
};
2016-10-20 20:53:52 +02:00
}