nixpkgs/modules/misc/deployment.nix
Sander van der Burg e51fcac73c - deployment.targetHost is now defined as an option
- developed services.disnix.infrastructure option, which contains properties for the Disnix infrastructure model (these properties can be either used by Disnix itself or the Avahi publisher)


svn path=/nixos/trunk/; revision=25052
2010-12-10 14:22:00 +00:00

18 lines
309 B
Nix

{ config, pkgs, ... }:
with pkgs.lib;
{
options = {
deployment = {
targetHost = mkOption {
description = ''
This option specifies a hostname or IP address which can be used by nixos-deploy-network
to execute remote deployment operations.
'';
};
};
};
}