8b2884de09
Change-Id: I607af1fc41c1f6ee24eed1386a23663346c3acc2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9574 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
9 lines
258 B
Nix
9 lines
258 B
Nix
# Base image for Yandex Cloud VMs.
|
|
{ depot, ... }:
|
|
|
|
(depot.ops.nixos.nixosFor {
|
|
imports = [
|
|
(depot.path.origSrc + ("/ops/modules/yandex-cloud.nix"))
|
|
(depot.path.origSrc + ("/ops/modules/tvl-users.nix"))
|
|
];
|
|
}).config.system.build.yandexCloudImage
|