mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-06 02:59:40 +01:00
41d2c3322b
This reverts commit 76f681355c
.
This setting is opinionated and should be left to the user.
See: https://github.com/NixOS/nixos-hardware/pull/154#issuecomment-617181517
19 lines
285 B
Nix
19 lines
285 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/intel
|
|
../../../common/pc/laptop/acpi_call.nix
|
|
];
|
|
|
|
boot = {
|
|
kernelModules = [
|
|
"tpm-rng"
|
|
];
|
|
};
|
|
|
|
services.xserver.deviceSection = lib.mkDefault ''
|
|
Option "TearFree" "true"
|
|
'';
|
|
}
|