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

19 lines
277 B
Nix

{ HaproxyConfig
}:
{ name
, configDir
, configFile
, config
, dependsOn ? {}
}:
{
inherit name configDir configFile;
inherit (config) user group;
pkg = HaproxyConfig {
inherit configDir configFile;
inherit config;
};
inherit dependsOn;
type = "fileset";
}