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

19 lines
362 B
Nix
Raw Normal View History

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