nixos-config/2configs/hw/tp-x2x0.nix

57 lines
1.3 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
2017-09-04 14:35:56 +02:00
imports = [
./tpm.nix
2018-12-17 01:12:29 +01:00
./ssd.nix
2019-10-15 08:47:31 +02:00
./bluetooth.nix
2017-09-04 14:35:56 +02:00
];
2017-12-28 16:00:14 +01:00
boot.kernelModules = [
"kvm-intel"
];
2019-09-25 14:52:13 +02:00
# hardware.opengl.extraPackages = [ pkgs.intel-media-driver ];
networking.wireless.enable = lib.mkDefault true;
hardware.enableRedistributableFirmware = true;
nixpkgs.config.allowUnfree = true;
hardware.cpu.intel.updateMicrocode = true;
zramSwap.enable = true;
# enable synaptics so we can easily disable the touchpad
# enable the touchpad with `synclient TouchpadOff=0`
2017-12-26 23:20:56 +01:00
services.xserver.libinput.enable = false;
services.xserver.synaptics = {
enable = true;
additionalOptions = ''Option "TouchpadOff" "1"'';
};
2015-08-31 10:47:22 +02:00
hardware.trackpoint = {
enable = true;
sensitivity = 220;
speed = 220;
emulateWheel = true;
2016-02-11 17:06:50 +01:00
};
2015-08-31 10:47:22 +02:00
services.tlp.enable = true;
2020-11-18 23:58:18 +01:00
services.tlp.settings = {
# BUG: http://linrunner.de/en/tlp/docs/tlp-faq.html#erratic-battery
2020-11-18 23:58:18 +01:00
START_CHARGE_THRESH_BAT0 = 95;
STOP_CHARGE_THRESH_BAT0 = 100;
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "ondemand";
CPU_MIN_PERF_ON_AC = 0;
CPU_MAX_PERF_ON_AC = 100;
CPU_MIN_PERF_ON_BAT = 0;
CPU_MAX_PERF_ON_BAT = 30;
};
2018-12-17 01:12:29 +01:00
2016-09-19 11:47:02 +02:00
powerManagement.resumeCommands = ''
${pkgs.utillinux}/bin/rfkill unblock all
2016-09-19 11:47:02 +02:00
'';
}