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

18 lines
321 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
];
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
}