inventory: Add buildHost argument

This commit is contained in:
Qubasa
2025-06-02 14:52:13 +02:00
parent f088ae35c5
commit ae41bfad8c
4 changed files with 14 additions and 2 deletions

View File

@@ -347,7 +347,12 @@ in
type = types.listOf types.str;
};
deploy.targetHost = lib.mkOption {
description = "Configuration for the deployment of the machine";
description = "SSH address of the host to deploy the machine to";
default = null;
type = types.nullOr types.str;
};
deploy.buildHost = lib.mkOption {
description = "SSH address of the host to build the machine on";
default = null;
type = types.nullOr types.str;
};