all repos — nixfiles @ 057e1926729ababa1cc6533e6ff5b5e52575513d

System and user configuration, managed by nix and home-manager

Create laptop-relevant modules
Alan Pearce alan@alanpearce.eu
Sat, 09 Sep 2017 14:18:09 +0200
commit

057e1926729ababa1cc6533e6ff5b5e52575513d

parent

d5e8695fa082b59de9807cc27af47d90c519ac55

3 files changed, 74 insertions(+), 0 deletions(-)

jump to
A modules/laptop.nix
@@ -0,0 +1,41 @@+{ config, pkgs, ... }:
+
+{ boot.kernelModules = [ "coretemp" ];
+  boot.extraModulePackages = with config.boot.kernelPackages; [
+    x86_energy_perf_policy
+  ];
+
+  hardware = {
+    bluetooth.enable = true;
+  };
+
+  environment.systemPackages = with pkgs; [
+    powerstat
+    powertop
+  ];
+
+  programs.light.enable = true;
+
+  services.logind.extraConfig = ''
+    IdleAction=suspend
+    IdleActionSec=600
+  '';
+
+  services.tlp = {
+    enable = true;
+    extraConfig = ''
+      CPU_SCALING_GOVERNOR_ON_BAT=powersave
+    '';
+  };
+
+  services.xserver = {
+    libinput = {
+      enable = true;
+      naturalScrolling = true;
+      disableWhileTyping = true;
+    };
+  };
+
+  systemd.services.nixos-upgrade.unitConfig.ConditionACPower = true;
+  systemd.services.nix-gc.unitConfig.ConditionACPower = true;
+}
A modules/thinkpad.nix
@@ -0,0 +1,31 @@+{ config, pkgs, ... }:
+
+{ boot.kernelModules = [ "tp_smapi" ];
+  boot.blacklistedKernelModules = [ "thinkpad_ec" ];
+  boot.extraModulePackages = with config.boot.kernelPackages; [
+    # acpi_call
+    tp_smapi
+  ];
+
+  hardware.trackpoint = {
+    enable = true;
+    emulateWheel = true;
+  };
+
+  services.thinkfan = {
+    enable = true;
+    sensor = "/sys/class/thermal/thermal_zone0/temp";
+  };
+
+  services.tlp = {
+    enable = true;
+    extraConfig = ''
+      # Newer Thinkpads have a battery firmware
+      # it conflicts with TLP if stop thresholds are set
+      START_CHARGE_THRESH_BAT0=70
+      STOP_CHARGE_THRESH_BAT0=80
+      START_CHARGE_THRESH_BAT1=70
+      STOP_CHARGE_THRESH_BAT1=80
+    '';
+  };
+}
M satoshipad.nixsatoshipad.nix
@@ -4,6 +4,8 @@ {   imports = [
     ./hardware-configuration.nix
     ./modules/grub2.nix
+    ./modules/laptop.nix
+    ./modules/thinkpad.nix
   ];
 
   networking.hostName = "satoshipad";