{ lib, pkgs, config, ...}: let inherit (lib) mkIf mkEnableOption mkOption; cfg = config.chuj.stuff.xserver; in { options.chuj.stuff.xserver = { enable = mkEnableOption "xserver"; libinput = mkEnableOption "libinput"; }; config = mkIf cfg.enable { services = { xserver = { enable = true; xkb.layout = "pl"; # autoRepeatDelay = 180; # autoRepeatInterval = 50; # ^ this doesn't work displayManager.sessionCommands = '' ${pkgs.xorg.xset}/bin/xset r rate 180 50 ''; }; }; environment.systemPackages = with pkgs; [ xclip xorg.xkill xorg.xev xdotool ]; services.libinput = if cfg.libinput then { enable = true; touchpad = { naturalScrolling = false; # it's reversed on my laptop for some reason tapping = true; tappingButtonMap = "lmr"; scrollMethod = "edge"; }; } else { enable = lib.mkForce false; }; # fuck you }; }