summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2020-06-08 19:42:04 -0600
committerKenny Ballou <kballou@devnulllabs.io>2020-06-08 19:44:39 -0600
commit6033d198b0d1df3b629249f2c064175483935185 (patch)
tree02a91485efd384a4fac4a0f4a0f2050310d82a93
parent670e7f5b745f299e62dccc5e875f9bb9d00cb05e (diff)
downloadcfg.nix-6033d198b0d1df3b629249f2c064175483935185.tar.gz
cfg.nix-6033d198b0d1df3b629249f2c064175483935185.tar.xz
console: add `useXkbconfig` setting
This effectively disables the capslock key in the TTY's, a cause of minor annoyance when forced into TTY sessions. Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
-rw-r--r--system/console.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/console.nix b/system/console.nix
index 8a6b3e4..3e63cbb 100644
--- a/system/console.nix
+++ b/system/console.nix
@@ -1,6 +1,6 @@
{
console = {
- keyMap = "us";
font = "Lat2-Terminus16";
+ useXkbConfig = true;
};
}