mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-19 08:31:01 +03:00

After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.
Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.
A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.
This commit was automatically created and can be verified using
nix-build https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \
--argstr baseRev 0128fbb0a5
result/bin/apply-formatting $NIXPKGS_PATH
154 lines
3.4 KiB
Nix
154 lines
3.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.actkbd;
|
|
|
|
configFile = pkgs.writeText "actkbd.conf" ''
|
|
${concatMapStringsSep "\n" (
|
|
{
|
|
keys,
|
|
events,
|
|
attributes,
|
|
command,
|
|
...
|
|
}:
|
|
''${
|
|
concatMapStringsSep "+" toString keys
|
|
}:${concatStringsSep "," events}:${concatStringsSep "," attributes}:${command}''
|
|
) cfg.bindings}
|
|
${cfg.extraConfig}
|
|
'';
|
|
|
|
bindingCfg =
|
|
{ ... }:
|
|
{
|
|
options = {
|
|
|
|
keys = mkOption {
|
|
type = types.listOf types.int;
|
|
description = "List of keycodes to match.";
|
|
};
|
|
|
|
events = mkOption {
|
|
type = types.listOf (
|
|
types.enum [
|
|
"key"
|
|
"rep"
|
|
"rel"
|
|
]
|
|
);
|
|
default = [ "key" ];
|
|
description = "List of events to match.";
|
|
};
|
|
|
|
attributes = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ "exec" ];
|
|
description = "List of attributes.";
|
|
};
|
|
|
|
command = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
description = "What to run.";
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.actkbd = {
|
|
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to enable the {command}`actkbd` key mapping daemon.
|
|
|
|
Turning this on will start an {command}`actkbd`
|
|
instance for every evdev input that has at least one key
|
|
(which is okay even for systems with tiny memory footprint,
|
|
since actkbd normally uses \<100 bytes of memory per
|
|
instance).
|
|
|
|
This allows binding keys globally without the need for e.g.
|
|
X11.
|
|
'';
|
|
};
|
|
|
|
bindings = mkOption {
|
|
type = types.listOf (types.submodule bindingCfg);
|
|
default = [ ];
|
|
example = lib.literalExpression ''
|
|
[ { keys = [ 113 ]; events = [ "key" ]; command = "''${pkgs.alsa-utils}/bin/amixer -q set Master toggle"; }
|
|
]
|
|
'';
|
|
description = ''
|
|
Key bindings for {command}`actkbd`.
|
|
|
|
See {command}`actkbd` {file}`README` for documentation.
|
|
|
|
The example shows a piece of what {option}`sound.mediaKeys.enable` does when enabled.
|
|
'';
|
|
};
|
|
|
|
extraConfig = mkOption {
|
|
type = types.lines;
|
|
default = "";
|
|
description = ''
|
|
Literal contents to append to the end of actkbd configuration file.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.udev.packages = lib.singleton (
|
|
pkgs.writeTextFile {
|
|
name = "actkbd-udev-rules";
|
|
destination = "/etc/udev/rules.d/61-actkbd.rules";
|
|
text = ''
|
|
ACTION=="add", SUBSYSTEM=="input", KERNEL=="event[0-9]*", ENV{ID_INPUT_KEY}=="1", TAG+="systemd", ENV{SYSTEMD_WANTS}+="actkbd@$env{DEVNAME}.service"
|
|
'';
|
|
}
|
|
);
|
|
|
|
systemd.services."actkbd@" = {
|
|
enable = true;
|
|
restartIfChanged = true;
|
|
unitConfig = {
|
|
Description = "actkbd on %I";
|
|
ConditionPathExists = "%I";
|
|
};
|
|
serviceConfig = {
|
|
Type = "forking";
|
|
ExecStart = "${pkgs.actkbd}/bin/actkbd -D -c ${configFile} -d %I";
|
|
};
|
|
};
|
|
|
|
# For testing
|
|
environment.systemPackages = [ pkgs.actkbd ];
|
|
|
|
};
|
|
|
|
}
|