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

19 lines
362 B
Nix
Raw Normal View History

2024-06-21 09:44:42 -04:00
{ lib, ... }:
2016-10-20 14:53:52 -04:00
{
imports = [
../.
../../../common/pc/laptop/ssd
2024-06-21 17:26:44 -04:00
../../../common/gpu/24.05-compat.nix
];
2016-10-20 14:53:52 -04:00
# TODO: reverse compat
2024-06-21 09:44:42 -04: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
}