2024-06-02 17:27:59 +00:00
|
|
|
# this is unlikely to be the final form or location of this code, it's
|
|
|
|
# an interim module which wraps the uevent-watch command
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
2024-06-02 17:27:59 +00:00
|
|
|
let
|
|
|
|
inherit (lib) mkOption types;
|
|
|
|
inherit (pkgs) liminix;
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
2024-06-02 17:27:59 +00:00
|
|
|
# inherit (pkgs.liminix.services) bundle;
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
2024-06-02 17:27:59 +00:00
|
|
|
options = {
|
|
|
|
system.service.uevent-rule = mkOption {
|
|
|
|
description = "a service which starts other services based on device state (sysfs)";
|
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = {
|
2024-07-15 18:00:08 +00:00
|
|
|
system.service.uevent-rule = config.system.callService ./rule.nix {
|
2024-06-09 21:37:45 +00:00
|
|
|
serviceName = mkOption {
|
|
|
|
description = "name of the service to run when the rule matches";
|
|
|
|
type = types.str;
|
2024-06-02 17:27:59 +00:00
|
|
|
};
|
|
|
|
terms = mkOption {
|
|
|
|
type = types.attrs;
|
|
|
|
example = {
|
|
|
|
devtype = "usb_device";
|
|
|
|
attrs.idVendor = "8086";
|
|
|
|
};
|
2025-02-10 21:55:08 +00:00
|
|
|
default = { };
|
2024-06-02 17:27:59 +00:00
|
|
|
};
|
|
|
|
symlink = mkOption {
|
|
|
|
description = "create symlink targeted on devpath";
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|