mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
9 lines
217 B
Nix
9 lines
217 B
Nix
{ system ? builtins.currentSystem
|
|
, evalModules ? (import ../. { }).evalModules.${system}
|
|
}:
|
|
|
|
{ registry ? "docker.io/gatehub" }:
|
|
|
|
{
|
|
nginx-deployment = import ./nginx-deployment { inherit evalModules registry; };
|
|
}
|