13 lines
236 B
Nix
13 lines
236 B
Nix
|
{ ... }: {
|
||
|
wayland.windowManager.sway = {
|
||
|
config = {
|
||
|
input = {
|
||
|
* = {
|
||
|
xkb_layout = "de,de";
|
||
|
xkb_variant = "neo_qwertz,neo";
|
||
|
xkb_options = "ctrls_toggle";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|