summaryrefslogtreecommitdiff
path: root/nixos/modules/features/mouse/default.nix
blob: c984fbb19966e68c29626a4cabb76a216b0f5c81 (plain)
1
2
3
4
5
6
7
8
9
10
{ config, pkgs, ... }:

{
  # Input remapping service (mouse buttons/keys) + its configuration GUI.
  services.input-remapper.enable = true;
  environment.systemPackages = with pkgs; [
    piper
    input-remapper
  ];
}