mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
36 lines
757 B
Nix
36 lines
757 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
config = lib.mkIf config.physical {
|
|
|
|
services.xserver = {
|
|
|
|
xkb.layout = "us";
|
|
|
|
# Keyboard responsiveness
|
|
autoRepeatDelay = 250;
|
|
autoRepeatInterval = 40;
|
|
|
|
};
|
|
|
|
# Use capslock as escape and/or control
|
|
services.keyd = {
|
|
enable = true;
|
|
keyboards = {
|
|
default = {
|
|
ids = [ "*" ];
|
|
settings = { main = { capslock = "overload(control, esc)"; }; };
|
|
};
|
|
};
|
|
};
|
|
|
|
# For some reason, keyd doesn't restart properly when updating
|
|
system.activationScripts.keyd.text =
|
|
"${pkgs.systemd}/bin/systemctl restart keyd.service";
|
|
|
|
# Enable num lock on login
|
|
home-manager.users.${config.user}.xsession.numlock.enable = true;
|
|
|
|
};
|
|
|
|
}
|