mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
22 lines
390 B
Nix
22 lines
390 B
Nix
{ config, lib, pkgs, user, inputs, ... }:
|
|
{
|
|
services.keyd = {
|
|
enable = true;
|
|
keyboards.true = {
|
|
ids = [ "*" ];
|
|
settings = {
|
|
main = {
|
|
capslock = "overload(meta, esc)";
|
|
leftalt = "layer(alt)";
|
|
};
|
|
alt = {
|
|
h = "left";
|
|
j = "down";
|
|
k = "up";
|
|
l = "right";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|