2020-03-23 17:17:37 +03:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.wshowkeys;
|
|
|
|
in {
|
|
|
|
meta.maintainers = with maintainers; [ primeos ];
|
|
|
|
|
|
|
|
options = {
|
|
|
|
programs.wshowkeys = {
|
2022-08-28 22:18:44 +03:00
|
|
|
enable = mkEnableOption (lib.mdDoc ''
|
2020-03-23 17:17:37 +03:00
|
|
|
wshowkeys (displays keypresses on screen on supported Wayland
|
|
|
|
compositors). It requires root permissions to read input events, but
|
2022-08-28 22:18:44 +03:00
|
|
|
these permissions are dropped after startup'');
|
2020-03-23 17:17:37 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-09-12 19:53:48 +03:00
|
|
|
security.wrappers.wshowkeys =
|
|
|
|
{ setuid = true;
|
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
|
|
|
source = "${pkgs.wshowkeys}/bin/wshowkeys";
|
|
|
|
};
|
2020-03-23 17:17:37 +03:00
|
|
|
};
|
|
|
|
}
|