nixos-config/config/programs/sway.nix

15 lines
No EOL
286 B
Nix

{ ... }: {
wayland.windowManager.sway = {
enable = true;
config = {
modifier = "Mod4";
input = {
"*" = {
xkb_layout = "de,de";
xkb_variant = "neo_qwertz,neo";
xkb_options = "grp:ctrls_toggle";
};
};
};
};
}