config/modules/laptop-config/default.nix

12 lines
351 B
Nix
Raw Normal View History

2022-02-05 21:42:36 +02:00
{ pkgs, config, lib, inputs, ... }:
{
nix.distributedBuilds = true;
nix.settings.system-features = [ "nixos-test" "benchmark" "kvm" ];
imports = [ ./gdm-touchpad-config.nix ];
services.tlp.enable = false;
services.thermald.enable = true;
powerManagement.powertop.enable = true;
powerManagement.scsiLinkPolicy = "med_power_with_dipm";
}