e51fcac73c
- 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
18 lines
309 B
Nix
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.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|