stockholm/makefu/2configs/hw/tp-x2x0.nix

57 lines
1.3 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
2017-09-04 12:35:56 +00:00
imports = [
./tpm.nix
2018-12-17 00:12:29 +00:00
./ssd.nix
2019-10-15 06:47:31 +00:00
./bluetooth.nix
2017-09-04 12:35:56 +00:00
];
2017-12-28 15:00:14 +00:00
boot.kernelModules = [
"kvm-intel"
];
2019-09-25 12:52:13 +00: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 22:20:56 +00:00
services.xserver.libinput.enable = false;
services.xserver.synaptics = {
enable = true;
additionalOptions = ''Option "TouchpadOff" "1"'';
};
2015-08-31 08:47:22 +00:00
hardware.trackpoint = {
enable = true;
sensitivity = 220;
speed = 220;
emulateWheel = true;
2016-02-11 16:06:50 +00:00
};
2015-08-31 08:47:22 +00:00
services.tlp.enable = true;
2020-11-18 22:58:18 +00:00
services.tlp.settings = {
# BUG: http://linrunner.de/en/tlp/docs/tlp-faq.html#erratic-battery
2020-11-18 22:58:18 +00: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 00:12:29 +00:00
2016-09-19 09:47:02 +00:00
powerManagement.resumeCommands = ''
${pkgs.utillinux}/bin/rfkill unblock all
2016-09-19 09:47:02 +00:00
'';
}