2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
2024-03-16 20:41:13 +00:00
|
|
|
let
|
|
|
|
inherit (pkgs) liminix;
|
|
|
|
inherit (lib) mkOption types;
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
options.system.service.ifwait = mkOption { type = liminix.lib.types.serviceDefn; };
|
2024-03-16 20:41:13 +00:00
|
|
|
|
|
|
|
config.system.service.ifwait = config.system.callService ./ifwait.nix {
|
|
|
|
state = mkOption { type = types.str; };
|
|
|
|
interface = mkOption {
|
|
|
|
type = liminix.lib.types.interface;
|
|
|
|
};
|
|
|
|
service = mkOption {
|
|
|
|
type = liminix.lib.types.service;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|