1
0
Fork 0
selfhostblocks/haproxy/mkunit.nix
2023-02-19 20:37:52 -08:00

17 lines
225 B
Nix

{ HaproxyService
}:
{ name
, configDir
, configFile
, dependsOn ? {}
}:
{
inherit name configDir configFile;
pkg = HaproxyService {
inherit configDir configFile;
};
inherit dependsOn;
type = "systemd-unit";
}