nixos-config/config/programs/sway.nix

14 lines
257 B
Nix
Raw Normal View History

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