2010-11-24 15:00:21 -08:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
2010-12-14 05:36:54 -08:00
|
|
|
deployment.targetHost = mkOption {
|
|
|
|
default = config.networking.hostName;
|
|
|
|
description = ''
|
|
|
|
This option specifies a hostname or IP address which can be used by nixos-deploy-network
|
|
|
|
to execute remote deployment operations.
|
|
|
|
'';
|
2010-11-24 15:00:21 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|