summary refs log tree commit diff
path: root/modules/misc/deployment.nix
blob: eead0f40becab927d831ef9d4419373dc31134cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ config, pkgs, ... }:

with pkgs.lib;

{
  options = {

    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.
        '';
      };
    };
  };
}