Incorporate omarchy-nix.
This commit is contained in:
23
home/programs/desktop/hyprland/input.nix
Normal file
23
home/programs/desktop/hyprland/input.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
# ABOUTME: Hyprland input and gesture configuration
|
||||
# ABOUTME: Keyboard layout, mouse settings, and touchpad behavior
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
wayland.windowManager.hyprland.settings = {
|
||||
input = lib.mkDefault {
|
||||
kb_layout = "us";
|
||||
kb_options = "caps:super,compose:ralt";
|
||||
|
||||
follow_mouse = 1;
|
||||
sensitivity = 0;
|
||||
|
||||
touchpad = {
|
||||
natural_scroll = false;
|
||||
};
|
||||
};
|
||||
|
||||
gestures = lib.mkDefault {
|
||||
workspace_swipe = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user