-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,12 +10,12 @@ inputs: { | |
with types; { | ||
enable = | ||
mkEnableOption "Create deployment script at `config.system.build.spoInstallScript`."; | ||
target-dns = mkOption { | ||
target = mkOption { | ||
type = nullOr str; | ||
default = null; | ||
example = "[email protected]"; | ||
description = '' | ||
The target DNS address to deploy to. Overwritten by a command line argument. | ||
The target address to deploy to, in the format <user>@<host>, where host is a DNS hostname. Overwritten by a command line argument. | ||
''; | ||
}; | ||
}; | ||
|
@@ -46,7 +46,7 @@ inputs: { | |
rm -rf "$tmp_keys" | ||
} | ||
target="${builtins.toString (config.spo-anywhere.install-script.target-dns or "")}" | ||
target="${builtins.toString (config.spo-anywhere.install-script.target or "")}" | ||
# todo: make target optional option | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters