mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
12 lines
325 B
Nix
12 lines
325 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselsystems.isLaptop = lib.mkEnableOption "laptop host";
|
|
config.swarselsystems.touchpad = lib.mkIf config.swarselsystems.isLaptop {
|
|
"type:touchpad" = {
|
|
dwt = "enabled";
|
|
tap = "enabled";
|
|
natural_scroll = "enabled";
|
|
middle_emulation = "enabled";
|
|
};
|
|
};
|
|
}
|