You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
393 B

  1. { lib, pkgs, ... }:
  2. {
  3. imports = [ ../../common/pc/laptop ];
  4. boot = {
  5. initrd.kernelModules = [ "pata_via" ];
  6. kernelParams = [
  7. "apm=on"
  8. "acpi=on"
  9. "vga=0x317" # 1024x768
  10. "console=tty1"
  11. "video=vesafb:ywrap" # Faster scroll
  12. ];
  13. };
  14. hardware.firmware = with pkgs; [ intel2200BGFirmware ];
  15. services.xserver.videoDrivers = [ "openchrome" ];
  16. }