summaryrefslogtreecommitdiffstats
path: root/1systems/tsp/hardware.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2021-03-12 20:12:04 +0100
committermakefu <github@syntax-fehler.de>2021-03-12 20:12:18 +0100
commit43dda7ab45ec7b8ea62027d8ac817e6d31d8cf4d (patch)
treeaf2fac0c3294d750e031d7cf97175b414255e0c0 /1systems/tsp/hardware.nix
parent39483ff77a43ae5c2cab9b902d371fd13dc2f530 (diff)
ma tsp.r: refactor
Diffstat (limited to '1systems/tsp/hardware.nix')
-rw-r--r--1systems/tsp/hardware.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/1systems/tsp/hardware.nix b/1systems/tsp/hardware.nix
new file mode 100644
index 000000000..2788eae04
--- /dev/null
+++ b/1systems/tsp/hardware.nix
@@ -0,0 +1,9 @@
+{ lib, ... }:
+{
+ imports = [
+ # laptop is an acer aspire, but close enough i'd say
+ <stockholm/makefu/2configs/hw/tp-x2x0.nix>
+ ];
+ # the laptop only has the touchpad
+ services.xserver.synaptics.additionalOptions = lib.mkForce ''Option "TouchpadOff" "0"'';
+}