switched to eurkey keyboard layout

This commit is contained in:
willifan 2025-01-01 18:19:04 +01:00
parent eefb86b697
commit 1df7df00f4
4 changed files with 4 additions and 11 deletions

View file

@ -28,7 +28,7 @@
networkmanager.enable = true; networkmanager.enable = true;
hostName = "${hostname}"; hostName = "${hostname}";
}; };
console.keyMap = "de"; console.keyMap = "en";
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
system.stateVersion = "23.11"; system.stateVersion = "23.11";

View file

@ -10,12 +10,6 @@
rightalt = "overload(altgr, rightalt)"; rightalt = "overload(altgr, rightalt)";
capslock = "overload(control, esc)"; capslock = "overload(control, esc)";
}; };
altgr = {
a = ''macro(compose a ")'';
o = ''macro(compose o ")'';
u = ''macro(compose u ")'';
s = ''macro(compose s s)'';
};
}; };
}; };
}; };

View file

@ -40,10 +40,10 @@ lib.mkIf config.desktop.hyprland.enable {
xwayland.force_zero_scaling = true; xwayland.force_zero_scaling = true;
input = { input = {
kb_layout = "us"; kb_layout = "eu";
kb_variant = ""; kb_variant = "";
kb_model = ""; kb_model = "";
kb_options = "compose:menu"; kb_options = "";
kb_rules = ""; kb_rules = "";

View file

@ -30,8 +30,7 @@ lib.mkIf config.desktop.enable {
input = { input = {
keyboard.xkb = { keyboard.xkb = {
layout = "us(euro)"; layout = "eu";
options = "compose:menu";
}; };
}; };