23 lines
343 B
Nix
23 lines
343 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/intel
|
|
];
|
|
|
|
boot = {
|
|
extraModulePackages = with config.boot.kernelPackages; [
|
|
acpi_call
|
|
];
|
|
kernelModules = [
|
|
"acpi_call"
|
|
"tpm-rng"
|
|
];
|
|
};
|
|
|
|
services.xserver.deviceSection = lib.mkDefault ''
|
|
Option "TearFree" "true"
|
|
'';
|
|
}
|