diff --git a/users/youwen/linux/hyprland/laptop/default.nix b/users/youwen/linux/hyprland/laptop/default.nix index 9f7a1da..ca15dae 100644 --- a/users/youwen/linux/hyprland/laptop/default.nix +++ b/users/youwen/linux/hyprland/laptop/default.nix @@ -1 +1,18 @@ -{ imports = [ ../common.nix ./laptop-only.nix ]; } +{ lib, ... }: +{ + imports = [ ../common.nix ]; + wayland.windowManager.hyprland.settings.input.touchpad = { + natural_scroll = true; + disable_while_typing = true; + clickfinger_behavior = true; + tap-to-click = false; + scroll_factor = 0.5; + }; + wayland.windowManager.hyprland.settings.general.sensitivity = lib.mkForce 1.0; + wayland.windowManager.hyprland.settings.env = [ + "HYPRCURSOR_THEME,Bibata-Modern-Ice" + "HYPRCURSOR_SIZE,24" + "XCURSOR_THEME,Bibata-Modern-Ice" + "XCURSOR_SIZE,24" + ]; +} diff --git a/users/youwen/linux/hyprland/laptop/laptop-only.nix b/users/youwen/linux/hyprland/laptop/laptop-only.nix deleted file mode 100644 index ffcd441..0000000 --- a/users/youwen/linux/hyprland/laptop/laptop-only.nix +++ /dev/null @@ -1 +0,0 @@ -{ }