There is nothing in this commit except for the changes made by nix-shell -p nixfmt-rfc-style --run "nixfmt ." If this has mucked up your open branches then sorry about that. You can probably nixfmt them to match before merging
24 lines
463 B
Nix
24 lines
463 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
inherit (pkgs) liminix;
|
|
inherit (lib) mkOption types;
|
|
in
|
|
{
|
|
options.system.service.ifwait = mkOption { type = liminix.lib.types.serviceDefn; };
|
|
|
|
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;
|
|
};
|
|
};
|
|
}
|