11 lines
351 B
Nix
11 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";
|
|
}
|