It is going to be merged into nixpkgs, under `nixos/hardware`. This will give better discoverability, and considering the low turnover (less than 100 commits in the last year and only 350 total) it won’t make any dent on the size of nixpkgs. We have a monorepo, let’s use it.
22 lines
393 B
Nix
22 lines
393 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ../../common/pc/laptop ];
|
|
|
|
boot = {
|
|
initrd.kernelModules = [ "pata_via" ];
|
|
|
|
kernelParams = [
|
|
"apm=on"
|
|
"acpi=on"
|
|
"vga=0x317" # 1024x768
|
|
"console=tty1"
|
|
"video=vesafb:ywrap" # Faster scroll
|
|
];
|
|
};
|
|
|
|
hardware.firmware = with pkgs; [ intel2200BGFirmware ];
|
|
|
|
services.xserver.videoDrivers = [ "openchrome" ];
|
|
}
|