summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/hw/tp-x230.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-x230.nix
parentcbfcc890e3b76d942b927809bf981a5fa7289e6a (diff)
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/2configs/hw/tp-x230.nix')
-rw-r--r--makefu/2configs/hw/tp-x230.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/makefu/2configs/hw/tp-x230.nix b/makefu/2configs/hw/tp-x230.nix
deleted file mode 100644
index 69fe7adc..00000000
--- a/makefu/2configs/hw/tp-x230.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
-
- imports = [ ./tp-x2x0.nix <nixos-hardware/lenovo/thinkpad/x230> ];
-
- # configured media keys inside awesomerc
- # sound.mediaKeys.enable = true;
-
- # possible i915 powersave options:
- # options i915 enable_rc6=1 enable_fbc=1 semaphores=1
-
- boot.extraModprobeConfig = ''
- options thinkpad_acpi fan_control=1
- options i915 enable_rc6=1 enable_fbc=1 semaphores=1
- '';
-
- boot.initrd.availableKernelModules = [ "thinkpad_acpi" ];
-
- services.xserver.displayManager.sessionCommands =''
- xinput set-int-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation" 8 1
- xinput set-int-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Button" 8 2
- xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Axes" 6 7 4 5
- # xinput set-int-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Timeout" 8 200
- '';
-
- # enable HDMI output switching with pulseaudio
- hardware.pulseaudio.extraConfig = ''
- load-module module-alsa-sink device=hw:0,3 sink_properties=device.description="HDMIOutput" sink_name="HDMI"
- '';
- # load graphical equalizer module
- # load-module module-equalizer-sink
-
- # combine multiple sinks to one:
- # list all sinks: pactl list short sinks
- # pacmd load-module module-combine-sink sink_name=combined sink_properties=device.description=CombinedSink slaves=sink1,sink2 channels=2
-
-}