mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-29 22:00:42 +00:00
Add early incomplete hyprland config
This commit is contained in:
parent
953334c841
commit
6da71787f1
17 changed files with 491 additions and 6 deletions
25
home/programs/graphical/wms/hyprland/config/input.nix
Normal file
25
home/programs/graphical/wms/hyprland/config/input.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
wayland.windowManager.hyprland.settings = {
|
||||
input = {
|
||||
# Keyboard layout settings
|
||||
# Default to US keyboard, but allow switching to SK with alt-shift
|
||||
kb_layout = "us, sk";
|
||||
kb_variant = ",qwerty";
|
||||
kb_options = "grp:alt_shift_toggle";
|
||||
|
||||
# Enable numlock by default (once Hyprland is loaded)
|
||||
numlock_by_default = true;
|
||||
|
||||
# cursor movement will always change focus to the window under the cursor
|
||||
follow_mouse = 1;
|
||||
|
||||
touchpad = {
|
||||
# Sending LMB + RMB = MMB
|
||||
middle_button_emulation = true;
|
||||
# I'm not natural
|
||||
natural_scroll = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue