Compose and disable toucpad while typing

This commit is contained in:
Filippo Berto 2022-05-09 16:07:47 +02:00
parent fcb4d653ad
commit e708ad696a
2 changed files with 7 additions and 0 deletions

View file

@ -40,4 +40,5 @@ in
network-manager-applet.enable = true; network-manager-applet.enable = true;
blueman-applet.enable = true; blueman-applet.enable = true;
}; };
home.packages = with pkgs; [ blueman ];
} }

View file

@ -1,6 +1,11 @@
{ pkgs, lib, ... }: { pkgs, lib, ... }:
{ {
home = { home = {
language.base = "it_IT.UTF-8";
keyboard = {
layout = "it";
options = [ "terminate:ctrl_alt_bksp" "compose:rctrl" ];
};
packages = with pkgs; [ packages = with pkgs; [
arandr arandr
authy authy
@ -98,6 +103,7 @@
## Touchpad ## Touchpad
${pkgs.xorg.xinput}/bin/xinput set-prop 'DELL0824:00 06CB:7E92 Touchpad' 'libinput Natural Scrolling Enabled' 1 ${pkgs.xorg.xinput}/bin/xinput set-prop 'DELL0824:00 06CB:7E92 Touchpad' 'libinput Natural Scrolling Enabled' 1
${pkgs.xorg.xinput}/bin/xinput set-prop 'DELL0824:00 06CB:7E92 Touchpad' 'libinput Tapping Enabled' 1 ${pkgs.xorg.xinput}/bin/xinput set-prop 'DELL0824:00 06CB:7E92 Touchpad' 'libinput Tapping Enabled' 1
${pkgs.xorg.xinput}/bin/xinput set-prop 'DELL0824:00 06CB:7E92 Touchpad' 'libinput Disable While Typing Enabled' 1
''; '';
}; };