10 lines
218 B
Nix
Executable file
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'
|
|
'';
|
|
}
|