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