t14_legacy_config/home/i3/keyboard.nix

10 lines
218 B
Nix
Raw Normal View History

2022-03-24 07:50:15 +01:00
{setxkbmap, writeShellApplication, ...}:
writeShellApplication {
name = "setkeyboard";
runtimeInputs = [ setxkbmap ];
text = ''
setxkbmap -layout us,latam
setxkbmap -option 'grp:alt_shift_toggle'
'';
}