diff options
| author | Baitinq <[email protected]> | 2024-01-13 21:09:00 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2024-01-13 21:09:00 +0100 |
| commit | df146857ab007c2c30bcdea64c946017b098dad1 (patch) | |
| tree | 2fec9e039817a9e251adf8e39e08219b508d517b | |
| parent | Home: Change pinentry flavor to gnome3 (diff) | |
| download | nixos-config-df146857ab007c2c30bcdea64c946017b098dad1.tar.gz nixos-config-df146857ab007c2c30bcdea64c946017b098dad1.tar.bz2 nixos-config-df146857ab007c2c30bcdea64c946017b098dad1.zip | |
Change default layout to US
| -rw-r--r-- | dotfiles/sway_config | 2 | ||||
| -rw-r--r-- | hosts/configuration.nix | 2 | ||||
| -rw-r--r-- | hosts/luna/default.nix | 2 | ||||
| -rw-r--r-- | hosts/phobos/default.nix | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/dotfiles/sway_config b/dotfiles/sway_config index e3e1aba..e049ba7 100644 --- a/dotfiles/sway_config +++ b/dotfiles/sway_config @@ -80,7 +80,7 @@ set $menu dmenu_path | dmenu | xargs swaymsg exec -- # Read `man 5 sway-input` for more information about this section. input type:keyboard { - xkb_layout gb + xkb_layout us } exec "xrdb ~/.Xresources" diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 28c0320..f21025e 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -80,7 +80,7 @@ EDITOR = "nvim"; VISUAL = "nvim"; - XKB_DEFAULT_LAYOUT = "gb"; + XKB_DEFAULT_LAYOUT = "us"; NIXPKGS_ALLOW_UNFREE = "1"; }; diff --git a/hosts/luna/default.nix b/hosts/luna/default.nix index 4af2336..03bede3 100644 --- a/hosts/luna/default.nix +++ b/hosts/luna/default.nix @@ -4,7 +4,7 @@ services = { # Configure keymap in X11 - xserver.layout = "gb"; + xserver.layout = "us"; logind.extraConfig = '' # don’t shutdown when power button is short-pressed HandlePowerKey=ignore diff --git a/hosts/phobos/default.nix b/hosts/phobos/default.nix index dd023f6..992505d 100644 --- a/hosts/phobos/default.nix +++ b/hosts/phobos/default.nix @@ -5,7 +5,7 @@ ]; # Configure keymap in X11 - services.xserver.layout = "gb"; + services.xserver.layout = "us"; # Pick only one of the below networking options. networking = { |