2025-02-10 21:55:08 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
let
|
|
|
|
inherit (pkgs.liminix.services) oneshot longrun;
|
|
|
|
in
|
|
|
|
{
|
2024-04-14 20:59:23 +00:00
|
|
|
config = {
|
|
|
|
services = rec {
|
|
|
|
mdevd = longrun {
|
|
|
|
name = "mdevd";
|
|
|
|
notification-fd = 3;
|
|
|
|
run = "${pkgs.mdevd}/bin/mdevd -D 3 -b 200000 -O4";
|
|
|
|
};
|
2024-04-26 19:52:12 +00:00
|
|
|
devout = longrun {
|
|
|
|
name = "devout";
|
|
|
|
notification-fd = 10;
|
2024-08-21 22:09:11 +00:00
|
|
|
timeout-up = 60 * 1000;
|
2024-06-15 14:01:57 +00:00
|
|
|
run = "exec ${pkgs.devout}/bin/devout /run/devout.sock 4";
|
2024-08-15 22:01:29 +00:00
|
|
|
dependencies = [ mdevd ];
|
2024-04-26 19:52:12 +00:00
|
|
|
};
|
2024-04-26 21:00:31 +00:00
|
|
|
coldplug = oneshot {
|
2024-06-30 15:58:29 +00:00
|
|
|
name = "coldplug";
|
2024-04-26 21:00:31 +00:00
|
|
|
# would love to know what mdevd-coldplug/udevadm trigger does
|
|
|
|
# that this doesn't
|
|
|
|
up = ''
|
|
|
|
for i in $(find /sys -name uevent); do ( echo change > $i ) ; done
|
|
|
|
'';
|
2024-06-30 15:58:29 +00:00
|
|
|
dependencies = [
|
|
|
|
devout
|
|
|
|
mdevd
|
|
|
|
];
|
2024-04-14 20:59:23 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|