feat: added multiple keyboard layouts
This commit is contained in:
parent
6d0c147513
commit
3a09eb1ae8
|
@ -7,9 +7,13 @@ userName: {
|
|||
users.${userName} = let
|
||||
hmConfig = config.home-manager.users.${userName};
|
||||
in {
|
||||
files = [
|
||||
".ssh/known_hosts"
|
||||
];
|
||||
files = with lib.lists;
|
||||
[
|
||||
".ssh/known_hosts"
|
||||
]
|
||||
++ optionals hmConfig.programs.rofi.enable [
|
||||
".cache/rofi-3.runcache"
|
||||
];
|
||||
directories = with lib.lists;
|
||||
[]
|
||||
++
|
||||
|
@ -38,6 +42,7 @@ userName: {
|
|||
[
|
||||
".local/share/Steam"
|
||||
".steam"
|
||||
# Ken follets pillars of earth
|
||||
".local/share//Daedalic Entertainment GmbH/"
|
||||
];
|
||||
};
|
||||
|
|
|
@ -17,8 +17,10 @@
|
|||
menu = "rofi -show run";
|
||||
input = {
|
||||
"*" = {
|
||||
xkb_layout = "de";
|
||||
xkb_variant = "bone";
|
||||
xkb_layout = "de,de";
|
||||
# games are stupid so the main ui has to be de() without bone
|
||||
xkb_variant = ",bone";
|
||||
xkb_options = "grp:win_space_toggle";
|
||||
repeat_delay = "235";
|
||||
repeat_rate = "60";
|
||||
accel_profile = "flat";
|
||||
|
|
Loading…
Reference in a new issue