diff options
-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; } |