2010-11-25 00:00:21 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
|
2010-12-10 15:22:00 +01:00
|
|
|
deployment = {
|
|
|
|
targetHost = mkOption {
|
2010-12-10 16:39:41 +01:00
|
|
|
default = config.networking.hostName;
|
2010-12-10 15:22:00 +01:00
|
|
|
description = ''
|
|
|
|
This option specifies a hostname or IP address which can be used by nixos-deploy-network
|
|
|
|
to execute remote deployment operations.
|
|
|
|
'';
|
2010-11-25 00:00:21 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|