t14_legacy_config/home/i3/keyboard.nix
2022-03-24 00:50:15 -06:00

10 lines
218 B
Nix
Executable file

{setxkbmap, writeShellApplication, ...}:
writeShellApplication {
name = "setkeyboard";
runtimeInputs = [ setxkbmap ];
text = ''
setxkbmap -layout us,latam
setxkbmap -option 'grp:alt_shift_toggle'
'';
}