1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2025-01-25 10:14:59 +01:00
nixos-hardware/apple/macbook-pro/10-1/default.nix

20 lines
400 B
Nix
Raw Normal View History

2024-06-21 20:44:42 +07:00
{ lib, ... }:
2016-10-20 14:53:52 -04: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 14:53:52 -04:00
# TODO: reverse compat
2024-06-21 20:44:42 +07:00
hardware.graphics.enable32Bit = lib.mkDefault true;
2016-10-20 14:53:52 -04:00
services.xserver = {
# TODO: we should not enable unfree drivers
# when there is an alternative (i.e. nouveau)
videoDrivers = [ "nvidia" ];
};
2016-10-20 14:53:52 -04:00
}