configuration/packages/kmonad.nix

175 lines
5 KiB
Nix
Raw Normal View History

2022-06-01 16:12:15 +00:00
# Adapted from https://github.com/kmonad/kmonad/blob/master/nix/nixos-module.nix
{ config, lib, pkgs, ... }:
let
2023-11-28 17:46:03 +00:00
inherit (builtins) attrValues listToAttrs;
2022-06-01 16:12:15 +00:00
cfg = config.services.kmonad;
package = pkgs.callPackage ({ haskellPackages, haskell }: let
src = pkgs.fetchFromGitHub {
owner = "kmonad";
repo = "kmonad";
2022-06-01 16:12:15 +00:00
rev = "7961987123e3cbeb60594123c03bb3a8ad1bc8d9";
2022-07-22 18:45:28 +00:00
hash = "sha256-wNWu+3ADEyGJSHavzx4BZH6kh/tTFbxJ9x3a5Ak8+x0=";
};
2022-06-01 16:12:15 +00:00
drv = pkgs.haskell.lib.addBuildDepends
(haskell.lib.justStaticExecutables (haskellPackages.callCabal2nix "kmonad" src { }))
[ pkgs.git ]
;
in drv) { };
# Per-keyboard options:
keyboard = { name, ... }: {
options = {
name = lib.mkOption {
type = lib.types.str;
example = "laptop-internal";
description = "Keyboard name.";
};
device = lib.mkOption {
type = lib.types.path;
example = "/dev/input/by-id/some-dev";
description = "Path to the keyboard's device file.";
};
2022-06-01 16:12:15 +00:00
extraGroups = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ ];
example = [ "openrazer" ];
description = ''
Extra permission groups to attach to the KMonad instance for
this keyboard.
Since KMonad runs as an unprivileged user, it may sometimes
need extra permissions in order to read the keyboard device
file. If your keyboard's device file isn't in the input
group you'll need to list its group in this option.
'';
};
compose = {
key = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = "ralt";
description = "The (optional) compose key to use.";
};
delay = lib.mkOption {
type = lib.types.int;
default = 5;
description = "The delay (in milliseconds) between compose key sequences.";
};
};
fallthrough = lib.mkEnableOption "Reemit unhandled key events.";
allowCommands = lib.mkEnableOption "Allow keys to run shell commands.";
config = lib.mkOption {
type = lib.types.lines;
default = ''
(defsrc a)
(deflayer default a)
;; Missing kmonad.keyboard.<name>.config
'';
description = ''
Keyboard configuration excluding the defcfg block.
'';
};
};
config = {
name = lib.mkDefault name;
};
};
# Create a complete KMonad configuration file:
mkCfg = keyboard:
let defcfg = ''
(defcfg
input (device-file "${keyboard.device}")
output (uinput-sink "kmonad-${keyboard.name}")
2022-06-01 16:12:15 +00:00
'' +
lib.optionalString (keyboard.compose.key != null) ''
cmp-seq ${keyboard.compose.key}
cmp-seq-delay ${toString keyboard.compose.delay}
'' + ''
fallthrough ${lib.boolToString keyboard.fallthrough}
allow-cmd ${lib.boolToString keyboard.allowCommands}
)
'';
in
pkgs.writeTextFile {
name = "kmonad-${keyboard.name}.cfg";
text = defcfg + "\n" + keyboard.config;
checkPhase = "${cfg.package}/bin/kmonad -d $out";
};
# Build a systemd path config that starts the service below when a
# keyboard device appears:
mkPath = keyboard: rec {
name = "kmonad-${keyboard.name}";
value = {
description = "KMonad trigger for ${keyboard.device}";
wantedBy = [ "default.target" ];
pathConfig.Unit = "${name}.service";
pathConfig.PathExists = keyboard.device;
};
};
# Build a systemd service that starts KMonad:
mkService = keyboard: {
name = "kmonad-${keyboard.name}";
value = {
description = "KMonad for ${keyboard.device}";
script = "${cfg.package}/bin/kmonad ${mkCfg keyboard}";
serviceConfig.Restart = "no";
serviceConfig.User = "kmonad";
2022-06-01 16:12:15 +00:00
serviceConfig.SupplementaryGroups = [ "input" "uinput" ] ++ keyboard.extraGroups;
serviceConfig.Nice = -20;
};
};
in
{
2022-06-01 16:12:15 +00:00
options.services.kmonad = {
enable = lib.mkEnableOption "KMonad: An advanced keyboard manager.";
package = lib.mkOption {
type = lib.types.package;
default = package;
example = "pkgs.haskellPackages.kmonad";
description = "The KMonad package to use.";
};
keyboards = lib.mkOption {
type = lib.types.attrsOf (lib.types.submodule keyboard);
default = { };
description = "Keyboard configuration.";
};
};
config = lib.mkIf cfg.enable {
2022-06-01 16:12:15 +00:00
environment.systemPackages = [ cfg.package ];
users.groups.uinput = { };
users.groups.kmonad = { };
users.users.kmonad = {
description = "KMonad system user.";
group = "kmonad";
isSystemUser = true;
};
services.udev.extraRules = ''
# KMonad user access to /dev/uinput
KERNEL=="uinput", MODE="0660", GROUP="uinput", OPTIONS+="static_node=uinput"
'';
2023-11-28 17:46:03 +00:00
systemd.paths = listToAttrs (map mkPath (attrValues cfg.keyboards));
2023-11-28 17:46:03 +00:00
systemd.services = listToAttrs (map mkService (attrValues cfg.keyboards));
};
}