added worklaptop, added firefox to i3 config.

This commit is contained in:
Gabe Venberg 2024-10-01 16:38:32 +02:00
parent 202cd21542
commit 9959cdfcbe
7 changed files with 181 additions and 19 deletions

View file

@ -27,6 +27,7 @@
brightnessctl
arandr
dex
firefox
];
services.playerctld.enable = true;
xsession.enable = true;

View file

@ -3,13 +3,15 @@
pkgs,
...
}: {
# Enable touchpad support (enabled default in most desktopManager).
services.xserver.libinput = {
services.libinput = {
# Enable touchpad support (enabled default in most desktopManager).
enable = true;
disableWhileTyping = true;
naturalScrolling = true;
additionalOptions = ''
Option "PalmDetection" "True"
'';
touchpad = {
disableWhileTyping = true;
naturalScrolling = true;
additionalOptions = ''
Option "PalmDetection" "True"
'';
};
};
}