diff options
Diffstat (limited to 'corp/ops/default.nix')
-rw-r--r-- | corp/ops/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/corp/ops/default.nix b/corp/ops/default.nix index 87f71da7860c..dfa62c80bafc 100644 --- a/corp/ops/default.nix +++ b/corp/ops/default.nix @@ -34,4 +34,13 @@ depot.nix.readTree.drvTargets rec { yc.attr = "corp.ops.yc-cli"; }; + + # Base image for Yandex VMs. + yandex-base-image = (depot.third_party.nixos { + configuration = { ... }: { + imports = [ + (depot.path.origSrc + ("/corp/ops/modules/yandex-cloud.nix")) + ]; + }; + }).config.system.build.yandexCloudImage; } |