summaryrefslogtreecommitdiffstats
path: root/nixos/hardware/apple/macbook-pro/10-1/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/hardware/apple/macbook-pro/10-1/default.nix')
-rw-r--r--nixos/hardware/apple/macbook-pro/10-1/default.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/nixos/hardware/apple/macbook-pro/10-1/default.nix b/nixos/hardware/apple/macbook-pro/10-1/default.nix
deleted file mode 100644
index e029ef21ecac..000000000000
--- a/nixos/hardware/apple/macbook-pro/10-1/default.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ lib, pkgs, ... }:
-
-{
- imports = [
- ../.
- ../../../common/pc/laptop/ssd
- ];
-
- # TODO: boot loader
- boot.loader.systemd-boot.enable = true;
- boot.loader.efi.canTouchEfiVariables = true;
-
- # TODO: reverse compat
- hardware.opengl.driSupport32Bit = true;
-
- services.xserver = {
- # TODO: we should not enable unfree drivers
- # when there is an alternative (i.e. nouveau)
- videoDrivers = [ "nvidia" ];
- };
-}