Configure keyboard preference with home-manager
Preferring home-manager to reduce some of the clutter I've created.
This commit is contained in:
parent
b6a803d99d
commit
ad77311c94
2 changed files with 7 additions and 7 deletions
|
@ -1,7 +0,0 @@
|
||||||
! remap caps-lock to escape
|
|
||||||
remove Lock = Caps_Lock
|
|
||||||
keysym Caps_Lock = Escape
|
|
||||||
|
|
||||||
! swap ctrl and super (similar to OSX) -- currently not working
|
|
||||||
! remove mod4 = Super_L
|
|
||||||
! add control = Super_L
|
|
|
@ -15,6 +15,13 @@
|
||||||
jq
|
jq
|
||||||
pup
|
pup
|
||||||
];
|
];
|
||||||
|
keyboard = {
|
||||||
|
options = [
|
||||||
|
# Swap Caps-Lock and Escape
|
||||||
|
"remove Lock = Caps_Lock"
|
||||||
|
"keysym Caps_Lock = Escape"
|
||||||
|
];
|
||||||
|
};
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
};
|
};
|
||||||
stateVersion = "19.09";
|
stateVersion = "19.09";
|
||||||
|
|
Loading…
Reference in a new issue