diff options
author | Ben Sima <ben@bsima.me> | 2021-02-17 20:31:30 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-02-17 20:31:30 -0500 |
commit | ee469d0b52c041583e64904b7bda54485ebdeef7 (patch) | |
tree | 3fa63cfb1e3ee68e1d893e2e324254a2befbe7b0 /Biz | |
parent | c669819375378a5cebe298abc91a5aeeaf3684a5 (diff) |
Trying to fix lithium touchscreen and power management
Diffstat (limited to 'Biz')
-rw-r--r-- | Biz/Dev/Configuration.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Biz/Dev/Configuration.nix b/Biz/Dev/Configuration.nix index 27f26c5..8b48a9c 100644 --- a/Biz/Dev/Configuration.nix +++ b/Biz/Dev/Configuration.nix @@ -154,6 +154,12 @@ in { autorun = true; layout = "us"; xkbOptions = "caps:ctrl_modifier"; + serverFlagsSection = '' + Option "BlankTime" "0" + Option "StandbyTime" "0" + Option "SuspendTime" "0" + Option "OffTime" "0" + ''; displayManager = { sddm = { enable = true; @@ -181,8 +187,10 @@ in { }; libinput = { enable = true; - + tapping = true; }; + modules = [ pkgs.xf86_input_wacom ]; + wacom.enable = true; }; jupyter = { |