blob: e0f44a8d77ab8b6073992570dbfd32b7a02b3e49 (
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
];
}
|