mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
feat: add some laptop configuration for hyprland
This commit is contained in:
parent
3dbc049b64
commit
4a840c8fae
2 changed files with 18 additions and 2 deletions
|
@ -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"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
{ }
|
|
Loading…
Reference in a new issue