mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
added laptop specific configuration
This commit is contained in:
parent
328a939676
commit
b4e7116937
2 changed files with 14 additions and 4 deletions
|
@ -55,7 +55,13 @@ in
|
||||||
"eww open full_screen_bar"
|
"eww open full_screen_bar"
|
||||||
];
|
];
|
||||||
|
|
||||||
input = {
|
input = if (hostname == "NicksNixLaptop") then
|
||||||
|
{
|
||||||
|
kb_layout = "us";
|
||||||
|
sensitivity = 0.0;
|
||||||
|
accel_profile = "linear";
|
||||||
|
touchpad.disable_while_typing = true;
|
||||||
|
} else {
|
||||||
kb_layout = "us";
|
kb_layout = "us";
|
||||||
sensitivity = -0.85;
|
sensitivity = -0.85;
|
||||||
accel_profile = "adaptive";
|
accel_profile = "adaptive";
|
||||||
|
|
|
@ -14,7 +14,11 @@ let
|
||||||
env = SIGNAL_USE_WAYLAND,1
|
env = SIGNAL_USE_WAYLAND,1
|
||||||
''
|
''
|
||||||
else if (hostname == "NicksNixLaptop") then ''
|
else if (hostname == "NicksNixLaptop") then ''
|
||||||
|
monitor=eDP-1, 1920x1080@60, 0x0, 1
|
||||||
|
|
||||||
|
env = XDG_SESSION_TYPE,wayland
|
||||||
|
env = SIGNAL_USE_WAYLAND,1
|
||||||
|
env = WLR_NO_HARDWARE_CURSORS,1
|
||||||
'' else ''
|
'' else ''
|
||||||
|
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue