nixos-config/config/programs/sway.nix

13 lines
236 B
Nix
Raw Normal View History

2022-01-18 13:12:43 +00:00
{ ... }: {
wayland.windowManager.sway = {
config = {
input = {
* = {
xkb_layout = "de,de";
xkb_variant = "neo_qwertz,neo";
xkb_options = "ctrls_toggle";
};
};
};
};
}