diff options
author | Adrian Kummerlaender | 2019-01-26 12:21:53 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2019-01-26 12:22:07 +0100 |
commit | 5da28d09cff2cea3a8c77ef4afe80b57849cb2e2 (patch) | |
tree | 0bd6b5ba3d1d239e10ce92af9fb94562c6a39fd3 /host | |
parent | f6bf2a673416dbe06fbc0c705c898cc1edab48b8 (diff) | |
download | nixos_system-5da28d09cff2cea3a8c77ef4afe80b57849cb2e2.tar nixos_system-5da28d09cff2cea3a8c77ef4afe80b57849cb2e2.tar.gz nixos_system-5da28d09cff2cea3a8c77ef4afe80b57849cb2e2.tar.bz2 nixos_system-5da28d09cff2cea3a8c77ef4afe80b57849cb2e2.tar.lz nixos_system-5da28d09cff2cea3a8c77ef4afe80b57849cb2e2.tar.xz nixos_system-5da28d09cff2cea3a8c77ef4afe80b57849cb2e2.tar.zst nixos_system-5da28d09cff2cea3a8c77ef4afe80b57849cb2e2.zip |
Set input speeds, enable TLP on athena
Diffstat (limited to 'host')
-rw-r--r-- | host/athena.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/host/athena.nix b/host/athena.nix index 7a8a692..38613d3 100644 --- a/host/athena.nix +++ b/host/athena.nix @@ -40,6 +40,7 @@ twoFingerScroll = true; horizontalScroll = false; palmDetect = true; + minSpeed = "1.5"; }; }; }; @@ -47,8 +48,17 @@ hardware.trackpoint = { enable = true; emulateWheel = true; - speed = 128; + speed = 250; }; + services.tlp.enable = true; + powerManagement.powertop.enable = true; + + i18n = { + consoleFont = "ter-132n"; + consolePackages = [ pkgs.terminus_font ]; + }; + + boot.earlyVconsoleSetup = true; } |