1
0
Fork 0
selfhostblocks/php-fpm/mkconfig.nix

21 lines
272 B
Nix
Raw Normal View History

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