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

57 lines
1.2 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
2017-09-04 12:35:56 +00:00
];
2017-12-28 15:00:14 +00:00
boot.kernelModules = [
"kvm-intel"
];
networking.wireless.enable = lib.mkDefault true;
hardware.enableAllFirmware = 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;
services.tlp.extraConfig = ''
# BUG: http://linrunner.de/en/tlp/docs/tlp-faq.html#erratic-battery
START_CHARGE_THRESH_BAT0=95
STOP_CHARGE_THRESH_BAT0=100
2016-02-11 16:06:50 +00:00
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
'';
2016-09-19 09:47:02 +00:00
2018-12-17 00:12:29 +00:00
2016-09-19 09:47:02 +00:00
powerManagement.resumeCommands = ''
${pkgs.rfkill}/bin/rfkill unblock all
2016-09-19 09:47:02 +00:00
'';
}