summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/hw/tp-x2x0.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
committermakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
commit060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch)
tree2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/2configs/hw/tp-x2x0.nix
parentcbfcc890e3b76d942b927809bf981a5fa7289e6a (diff)
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/2configs/hw/tp-x2x0.nix')
-rw-r--r--makefu/2configs/hw/tp-x2x0.nix56
1 files changed, 0 insertions, 56 deletions
diff --git a/makefu/2configs/hw/tp-x2x0.nix b/makefu/2configs/hw/tp-x2x0.nix
deleted file mode 100644
index bbed3f43..00000000
--- a/makefu/2configs/hw/tp-x2x0.nix
+++ /dev/null
@@ -1,56 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
- imports = [
- ./tpm.nix
- ./ssd.nix
- ./bluetooth.nix
- ];
-
- boot.kernelModules = [
- "kvm-intel"
- ];
-
- # 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`
-
- services.xserver.libinput.enable = false;
- services.xserver.synaptics = {
- enable = true;
- additionalOptions = ''Option "TouchpadOff" "1"'';
- };
- hardware.trackpoint = {
- enable = true;
- sensitivity = 220;
- speed = 220;
- emulateWheel = true;
- };
-
- services.tlp.enable = ! config.services.power-profiles-daemon.enable;
- services.tlp.settings = {
- # BUG: http://linrunner.de/en/tlp/docs/tlp-faq.html#erratic-battery
- 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;
- };
-
- powerManagement.resumeCommands = ''
- ${pkgs.utillinux}/bin/rfkill unblock all
- '';
-}