28 lines
652 B
Nix
28 lines
652 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.file.".config/hypr/07_input.conf".text = ''
|
|
# ── INPUT ─────────────────────────────────────────────────────────────────
|
|
input {
|
|
kb_layout = gb, se,
|
|
kb_variant =
|
|
kb_model =
|
|
kb_options =
|
|
kb_rules =
|
|
follow_mouse = 1
|
|
sensitivity = 0
|
|
touchpad {
|
|
natural_scroll = true
|
|
}
|
|
}
|
|
|
|
gestures {
|
|
workspace_swipe = false
|
|
}
|
|
|
|
device {
|
|
name = epic-mouse-v1
|
|
sensitivity = -0.5
|
|
}
|
|
'';
|
|
} |