1
0
liminix/modules/round-robin/default.nix

33 lines
661 B
Nix
Raw Normal View History

2024-07-15 21:37:37 +00:00
## Round Robin
##
## Given a list of services, run each in turn until it exits, then
## runs the next.
{
lib,
pkgs,
config,
...
}:
2024-07-15 21:37:37 +00:00
let
inherit (lib) mkOption types;
inherit (pkgs) liminix;
inherit (pkgs.liminix.services) longrun;
in
{
2024-07-15 21:37:37 +00:00
options = {
system.service.round-robin = mkOption {
description = "run services one at a time and failover to next";
type = liminix.lib.types.serviceDefn;
};
};
config.system.service.round-robin = config.system.callService ./service.nix {
services = mkOption {
type = types.listOf liminix.lib.types.service;
2024-07-15 21:37:37 +00:00
};
name = mkOption {
2024-07-15 21:37:37 +00:00
type = types.str;
};
};
}