diff --git a/configuration.nix b/configuration.nix index d4720c9..fed24ed 100644 --- a/configuration.nix +++ b/configuration.nix @@ -55,6 +55,7 @@ services.logind.lidSwitchExternalPower = "ignore"; + # Configure keymap in X11 services.xserver = { layout = "us"; @@ -267,6 +268,19 @@ $NEW_PROMPT_COMMAND" ''; + dconf.settings = { + "org/gnome/desktop/wm/keybindings" = { + move-to-workspace-left = ["Left"]; + move-to-workspace-right = ["Right"]; + switch-to-workspace-left = ["Left"]; + switch-to-workspace-right = ["Right"]; + + switch-applications = ["Tab"]; + switch-applications-backward = ["Tab"]; + switch-windows = ["Tab"]; + switch-windows-backward = ["Tab"]; + }; + }; };