nix-config/common/pc/touchpad.nix
Zuckerberg c4bd6777c5
Some checks failed
Check Flake / check-flake (push) Failing after 2m31s
Update to NixOS 24.05
2024-06-01 20:03:09 -06:00

16 lines
282 B
Nix

{ lib, config, pkgs, ... }:
let
cfg = config.de.touchpad;
in
{
options.de.touchpad = {
enable = lib.mkEnableOption "enable touchpad";
};
config = lib.mkIf cfg.enable {
services.libinput.enable = true;
services.libinput.touchpad.naturalScrolling = true;
};
}