summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2019-01-26 12:21:53 +0100
committerAdrian Kummerlaender2019-01-26 12:22:07 +0100
commit5da28d09cff2cea3a8c77ef4afe80b57849cb2e2 (patch)
tree0bd6b5ba3d1d239e10ce92af9fb94562c6a39fd3
parentf6bf2a673416dbe06fbc0c705c898cc1edab48b8 (diff)
downloadnixos_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
-rw-r--r--host/athena.nix12
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;
}