summaryrefslogtreecommitdiffstats
path: root/nixos/hardware/acer/aspire/4810t/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/hardware/acer/aspire/4810t/default.nix')
-rw-r--r--nixos/hardware/acer/aspire/4810t/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/nixos/hardware/acer/aspire/4810t/default.nix b/nixos/hardware/acer/aspire/4810t/default.nix
deleted file mode 100644
index d40b454b3aa4..000000000000
--- a/nixos/hardware/acer/aspire/4810t/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ lib, ... }:
-
-{
- imports = [
- ../../../common/cpu/intel
- ../../../common/pc/laptop
- ];
-
- boot = {
- initrd.kernelModules = [ "ata_piix" ];
- kernelParams = [
- "apm=on"
- "acpi=on"
- "vga=0x317"
- "video=vesafb:ywrap"
-
- # Important, disable KMS to fix backlight regulation:
- "nomodeset"
- ];
- };
-
- # TODO: reverse compat
- hardware.opengl.driSupport = false;
-
- # TODO: reverse compat
- services.xserver = {
- defaultDepth = lib.mkDefault 24;
- };
-}