config/modules/laptop-config/default.nix
2022-02-05 20:47:50 +01:00

12 lines
351 B
Nix

{ 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";
}