1
0
Fork 0
selfhostblocks/haproxy/mkunit.nix

18 lines
225 B
Nix
Raw Normal View History

2022-10-04 09:08:51 +02:00
{ HaproxyService
}:
{ name
, configDir
, configFile
, dependsOn ? {}
}:
{
inherit name configDir configFile;
pkg = HaproxyService {
inherit configDir configFile;
};
inherit dependsOn;
type = "systemd-unit";
}